1
mirror of https://code.videolan.org/videolan/vlc synced 2024-10-07 03:56:28 +02:00

Fix url converter on win32

(patch contributed by Marco Munderloh)
This commit is contained in:
Rémi Denis-Courmont 2005-08-20 15:06:17 +00:00
parent 68217187cb
commit 638009535e

View File

@ -60,9 +60,7 @@ char *E_(FileToUrl)( char *name, vlc_bool_t *pb_index )
while( *name ) while( *name )
{ {
if( *name == '\\' ) if( *name == '\\' )
{ *name = '/';
*p++ = '/';
}
name++; name++;
} }
#endif #endif