Commit bdeabc36 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Fix directory separator

parent f5e75324
......@@ -80,7 +80,7 @@ const char *config_GetConfDir( void )
if( *path == '\0' )
{
snprintf( path, sizeof( path ), "%s/share", /* FIXME: Duh? */
snprintf( path, sizeof( path ), "%s"DIR_SEP"share", /* FIXME: Duh? */
vlc_global()->psz_vlcpath );
path[sizeof( path ) - 1] = '\0';
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment