diff options
author | Yang Tse <yangsita@gmail.com> | 2011-09-03 16:06:10 +0200 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2011-09-03 16:07:09 +0200 |
commit | 6b75d2c2df7209919a70a29a4479625b62fb3c28 (patch) | |
tree | a5b2bd4195db4cb69f3299814e910bd04ebb6eac /src | |
parent | 2be65bb0c5317b6821882b41558bd8cd2eb64d25 (diff) |
fix a bunch of MSVC compiler warnings
Diffstat (limited to 'src')
-rw-r--r-- | src/main.c | 2 | ||||
-rw-r--r-- | src/setup.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c index 86a0c4389..c22b73350 100644 --- a/src/main.c +++ b/src/main.c @@ -4646,7 +4646,7 @@ static void memory_tracking_init(void) } } #else -# define memory_tracking_init() +# define memory_tracking_init() Curl_nop_stmt #endif static int diff --git a/src/setup.h b/src/setup.h index d2562a244..58ca0efee 100644 --- a/src/setup.h +++ b/src/setup.h @@ -222,7 +222,7 @@ int fileno( FILE *stream); * Include macros and defines that should only be processed once. */ -#ifndef __SETUP_ONCE_H +#ifndef HEADER_CURL_SETUP_ONCE_H #include "setup_once.h" #endif |