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
Steve Lhomme
VLC
Commits
161699e4
Commit
161699e4
authored
Mar 08, 2009
by
ivoire
Browse files
vcdx: fix warning.
parent
4b6976c1
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/access/vcdx/info.c
View file @
161699e4
...
...
@@ -40,8 +40,8 @@
#include
<libvcd/logging.h>
static
inline
void
MetaInfoAddStr
(
access_t
*
p_access
,
char
*
psz_cat
,
char
*
title
,
const
char
*
psz
)
MetaInfoAddStr
(
access_t
*
p_access
,
char
*
psz_cat
,
const
char
*
title
,
const
char
*
psz
)
{
vcdplayer_t
*
p_vcdplayer
=
(
vcdplayer_t
*
)
p_access
->
p_sys
;
if
(
psz
)
{
...
...
@@ -53,7 +53,7 @@ MetaInfoAddStr(access_t *p_access, char *psz_cat,
static
inline
void
MetaInfoAddNum
(
access_t
*
p_access
,
char
*
psz_cat
,
char
*
title
,
int
num
)
MetaInfoAddNum
(
access_t
*
p_access
,
char
*
psz_cat
,
const
char
*
title
,
int
num
)
{
vcdplayer_t
*
p_vcdplayer
=
(
vcdplayer_t
*
)
p_access
->
p_sys
;
dbg_print
(
INPUT_DBG_META
,
"cat %s, field %s: %d"
,
psz_cat
,
title
,
num
);
...
...
@@ -62,7 +62,7 @@ MetaInfoAddNum(access_t *p_access, char *psz_cat, char *title, int num)
}
static
inline
void
MetaInfoAddHex
(
access_t
*
p_access
,
char
*
psz_cat
,
char
*
title
,
int
hex
)
MetaInfoAddHex
(
access_t
*
p_access
,
char
*
psz_cat
,
const
char
*
title
,
int
hex
)
{
vcdplayer_t
*
p_vcdplayer
=
(
vcdplayer_t
*
)
p_access
->
p_sys
;
dbg_print
(
INPUT_DBG_META
,
"cat %s, field %s: %d"
,
psz_cat
,
title
,
hex
);
...
...
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