diff options
author | Sergei Nikulov <sergey.nikulov@gmail.com> | 2015-03-02 15:58:27 +0300 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2015-03-03 14:33:11 +0100 |
commit | 43eb8b28748b71931299ab31d0baa909dbab44a0 (patch) | |
tree | 7a988534e3cf827634ea99f57366faa30883dfd3 /tests/libtest/testtrace.c | |
parent | df5578a7a304a23f9aa3670daff8573ec3ef416f (diff) | |
download | curl-43eb8b28748b71931299ab31d0baa909dbab44a0.tar.gz |
libtest: fixed linker errors on msvc
Bug: https://github.com/bagder/curl/pull/144
Diffstat (limited to 'tests/libtest/testtrace.c')
-rw-r--r-- | tests/libtest/testtrace.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/tests/libtest/testtrace.c b/tests/libtest/testtrace.c index c977d2105..8d9c6b814 100644 --- a/tests/libtest/testtrace.c +++ b/tests/libtest/testtrace.c @@ -21,10 +21,6 @@ ***************************************************************************/ #include "test.h" - -#define _MPRINTF_REPLACE /* use our functions only */ -#include <curl/mprintf.h> - #include "testutil.h" #include "testtrace.h" #include "memdebug.h" @@ -34,7 +30,7 @@ struct libtest_trace_cfg libtest_debug_config; static time_t epoch_offset; /* for test time tracing */ static int known_offset; /* for test time tracing */ -static +static void libtest_debug_dump(const char *timebuf, const char *text, FILE *stream, const unsigned char *ptr, size_t size, int nohex) { |