[vlc-devel] commit: Compilation fix for win32. (Jean-Baptiste Kempf )
git version control
git at videolan.org
Wed Oct 1 03:14:22 CEST 2008
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Tue Sep 30 18:13:09 2008 -0700| [c4d3614003e9c7991263b17a353e63c1f6a2c85d] | committer: Jean-Baptiste Kempf
Compilation fix for win32.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=c4d3614003e9c7991263b17a353e63c1f6a2c85d
---
src/extras/libc.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/extras/libc.c b/src/extras/libc.c
index b29a7ed..df6e37f 100644
--- a/src/extras/libc.c
+++ b/src/extras/libc.c
@@ -258,9 +258,9 @@ void *vlc_wopendir( const wchar_t *wpath )
if( !p_dir )
return NULL;
p_dir->p_real_dir = NULL;
-# if defined(UNDER_CE)
+#if defined(UNDER_CE)
p_dir->i_drives = NULL;
-# elif
+#else
p_dir->i_drives = GetLogicalDrives();
#endif
return (void *)p_dir;
More information about the vlc-devel
mailing list