From: Daniel Stenberg Date: Tue, 2 Nov 2004 14:02:29 +0000 (+0000) Subject: use ifdef not if X-Git-Tag: curl-7_12_3~254 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4cd5220d27883537669ed29b762406e08d50d1b6;p=thirdparty%2Fcurl.git use ifdef not if --- diff --git a/lib/mprintf.c b/lib/mprintf.c index 629a9e07ce..4650961d15 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 *),