diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-11-02 14:02:29 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-11-02 14:02:29 +0000 |
commit | 4cd5220d27883537669ed29b762406e08d50d1b6 (patch) | |
tree | c4fda5150d2fc7cbb2cd744fba266c198e2b8bff | |
parent | 24d47a6e07304cf0921f2d30734b3c64360773c3 (diff) |
use ifdef not if
-rw-r--r-- | lib/mprintf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/mprintf.c b/lib/mprintf.c index 629a9e07c..4650961d1 100644 --- a/lib/mprintf.c +++ b/lib/mprintf.c @@ -590,7 +590,7 @@ static int dprintf_formatf( the second argument */ /* function pointer called for each output character */ -#if _WIN32_WCE +#ifdef _WIN32_WCE int (__cdecl *stream) (int, FILE *), #else int (*stream)(int, FILE *), |