aboutsummaryrefslogtreecommitdiff
path: root/lib/mprintf.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-11-02 14:02:29 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-11-02 14:02:29 +0000
commit4cd5220d27883537669ed29b762406e08d50d1b6 (patch)
treec4fda5150d2fc7cbb2cd744fba266c198e2b8bff /lib/mprintf.c
parent24d47a6e07304cf0921f2d30734b3c64360773c3 (diff)
use ifdef not if
Diffstat (limited to 'lib/mprintf.c')
-rw-r--r--lib/mprintf.c2
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 *),