diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-07-04 16:37:16 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-07-04 16:37:16 +0000 |
commit | 449e5bc2ad1d83de50779686679de6158ae9ff03 (patch) | |
tree | 1fb1a97babe9aa70e22c5e1ba5cd6d13ebb89df2 /tests/libtest | |
parent | 8736c11d849ab2899023bacb9a3863065a818e4f (diff) | |
download | curl-449e5bc2ad1d83de50779686679de6158ae9ff03.tar.gz |
CURLDEBUG not MALLOCDEBUG anymore
Diffstat (limited to 'tests/libtest')
-rw-r--r-- | tests/libtest/first.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/libtest/first.c b/tests/libtest/first.c index ac230b973..6b9af9bcf 100644 --- a/tests/libtest/first.c +++ b/tests/libtest/first.c @@ -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); |