Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
4a414dfc
Commit
4a414dfc
authored
Dec 29, 2013
by
Felix Paul Kühne
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
darwin/error: add partial l10n and doc
parent
5d8bfd13
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
po/POTFILES.in
po/POTFILES.in
+1
-0
src/darwin/error.c
src/darwin/error.c
+3
-3
No files found.
po/POTFILES.in
View file @
4a414dfc
...
...
@@ -74,6 +74,7 @@ src/config/file.c
src/config/help.c
src/config/intf.c
src/config/keys.c
src/darwin/error.c
src/extras/libc.c
src/extras/tdestroy.c
src/input/access.c
...
...
src/darwin/error.c
View file @
4a414dfc
...
...
@@ -30,14 +30,14 @@
const
char
*
vlc_strerror_c
(
int
errnum
)
{
/*
C run-time errors
*/
/*
We cannot simply use strerror() here, since it is not thread-safe.
*/
if
((
unsigned
)
errnum
<
(
unsigned
)
sys_nerr
)
return
sys_errlist
[
errnum
];
return
"Unknown error"
;
return
_
(
"Unknown error"
)
;
}
const
char
*
vlc_strerror
(
int
errnum
)
{
return
vlc_
gettext
(
vlc_strerror_c
(
errnum
)
);
return
vlc_
strerror_c
(
errnum
);
}
Write
Preview
Markdown
is supported
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