Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
a993d417
Commit
a993d417
authored
Apr 06, 2006
by
Christophe Mutricy
Browse files
Fix if statement
parent
e5d7794c
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/misc/unicode.c
View file @
a993d417
...
...
@@ -375,7 +375,8 @@ int utf8_mkdir( const char *dirname )
{
if
(
GetLastError
(
)
==
ERROR_ALREADY_EXISTS
)
errno
=
EEXIST
;
errno
=
ENOENT
;
else
errno
=
ENOENT
;
return
-
1
;
}
return
0
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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