From be235a08f8f9185947bbec07de8c211c35c8f4ba Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Kempf Date: Sat, 24 Jul 2010 14:52:56 +0200 Subject: [PATCH] WinCE: actually fix the compilation --- src/text/unicode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/text/unicode.c b/src/text/unicode.c index a6b51a36d8..a9c9e9508e 100644 --- a/src/text/unicode.c +++ b/src/text/unicode.c @@ -225,7 +225,7 @@ int utf8_vfprintf( FILE *stream, const char *fmt, va_list ap ) char *str; int res; -#ifdef WIN32 && !defined( UNDER_CE ) +#if defined( WIN32 ) && !defined( UNDER_CE ) /* Writing to the console is a lot of fun on Microsoft Windows. * If you use the standard I/O functions, you must use the OEM code page, * which is different from the usual ANSI code page. Or maybe not, if the -- 2.39.2