[vlc-commits] commit: WinCE: actually fix the compilation (Jean-Baptiste Kempf )

git at videolan.org git at videolan.org
Sat Jul 24 14:52:38 CEST 2010


vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Sat Jul 24 14:52:56 2010 +0200| [be235a08f8f9185947bbec07de8c211c35c8f4ba] | committer: Jean-Baptiste Kempf 

WinCE: actually fix the compilation

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=be235a08f8f9185947bbec07de8c211c35c8f4ba
---

 src/text/unicode.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/text/unicode.c b/src/text/unicode.c
index a6b51a3..a9c9e95 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



More information about the vlc-commits mailing list