Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
d6a019d0
Commit
d6a019d0
authored
Nov 23, 2013
by
Maxim Bublis
Committed by
Rémi Denis-Courmont
Nov 23, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed warning on incompatible pointer types discarding qualifiers
Signed-off-by:
Rémi Denis-Courmont
<
remi@remlab.net
>
parent
ae4679b7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/input/es_out.c
src/input/es_out.c
+2
-2
No files found.
src/input/es_out.c
View file @
d6a019d0
...
...
@@ -193,7 +193,7 @@ static void EsOutDecodersStopBuffering( es_out_t *out, bool b_forced );
static
char
*
LanguageGetName
(
const
char
*
psz_code
);
static
char
*
LanguageGetCode
(
const
char
*
psz_lang
);
static
char
**
LanguageSplit
(
const
char
*
psz_langs
,
bool
b_default_any
);
static
int
LanguageArrayIndex
(
char
**
ppsz_langs
,
char
*
psz_lang
);
static
int
LanguageArrayIndex
(
char
**
ppsz_langs
,
c
onst
c
har
*
psz_lang
);
static
char
*
EsOutProgramGetMetaName
(
es_out_pgrm_t
*
p_pgrm
);
...
...
@@ -2818,7 +2818,7 @@ static char **LanguageSplit( const char *psz_langs, bool b_default_any )
return
ppsz
;
}
static
int
LanguageArrayIndex
(
char
**
ppsz_langs
,
char
*
psz_lang
)
static
int
LanguageArrayIndex
(
char
**
ppsz_langs
,
c
onst
c
har
*
psz_lang
)
{
if
(
!
ppsz_langs
||
!
psz_lang
)
return
-
1
;
...
...
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