Skip to content
Snippets Groups Projects
Commit cd238cef authored by Steve Lhomme's avatar Steve Lhomme Committed by Rémi Denis-Courmont
Browse files

win32: use the proper backslash in Windows pathes (bis)

Similar to dec06aec for UAP builds.
parent c10ea848
No related branches found
No related tags found
Loading
Pipeline #251914 passed with stage
in 14 minutes and 19 seconds
......@@ -152,7 +152,7 @@ char *config_GetSysPath(vlc_sysdir_t type, const char *filename)
return dir;
char *path;
if (unlikely(asprintf(&path, "%s/%s", dir, filename) == -1))
if (unlikely(asprintf(&path, "%s\\%s", dir, filename) == -1))
path = NULL;
free(dir);
return path;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment