Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
bdeabc36
Commit
bdeabc36
authored
Jul 02, 2008
by
Rémi Denis-Courmont
Browse files
Fix directory separator
parent
f5e75324
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/config/dirs.c
View file @
bdeabc36
...
...
@@ -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'
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment