1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 23:58:49 -05:00

CURLDEBUG not MALLOCDEBUG anymore

This commit is contained in:
Daniel Stenberg 2003-07-04 16:37:16 +00:00
parent 8736c11d84
commit 449e5bc2ad

View File

@ -1,6 +1,6 @@
#include "test.h"
#ifdef MALLOCDEBUG
#ifdef CURLDEBUG
/* provide a proto for this debug function */
extern void curl_memdebug(const char *);
#endif
@ -24,7 +24,7 @@ int main(int argc, char **argv)
fprintf(stderr, "URL: %s\n", URL);
#ifdef MALLOCDEBUG
#ifdef CURLDEBUG
curl_memdebug("memdump");
#endif
return test(URL);