]> git.sesse.net Git - vlc/commitdiff
Compilation fix for win32.
authorJean-Baptiste Kempf <jb@videolan.org>
Wed, 1 Oct 2008 01:13:09 +0000 (18:13 -0700)
committerJean-Baptiste Kempf <jb@videolan.org>
Wed, 1 Oct 2008 01:13:09 +0000 (18:13 -0700)
src/extras/libc.c

index b29a7ede200bff0760dce688c7efbad671a9aacb..df6e37f399264bb053bf403373500f9c55528d1e 100644 (file)
@@ -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;