]> git.sesse.net Git - vlc/commitdiff
WinCE: actually fix the compilation
authorJean-Baptiste Kempf <jb@videolan.org>
Sat, 24 Jul 2010 12:52:56 +0000 (14:52 +0200)
committerJean-Baptiste Kempf <jb@videolan.org>
Sat, 24 Jul 2010 12:52:56 +0000 (14:52 +0200)
src/text/unicode.c

index a6b51a36d838d4d89c239c59603a0c491b622719..a9c9e9508e1eb8970f8c79c65ced48c00189b08f 100644 (file)
@@ -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