Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
161699e4
Commit
161699e4
authored
Mar 08, 2009
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vcdx: fix warning.
parent
4b6976c1
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
modules/access/vcdx/info.c
modules/access/vcdx/info.c
+4
-4
No files found.
modules/access/vcdx/info.c
View file @
161699e4
...
@@ -40,8 +40,8 @@
...
@@ -40,8 +40,8 @@
#include <libvcd/logging.h>
#include <libvcd/logging.h>
static
inline
void
static
inline
void
MetaInfoAddStr
(
access_t
*
p_access
,
char
*
psz_cat
,
MetaInfoAddStr
(
access_t
*
p_access
,
char
*
psz_cat
,
char
*
title
,
const
char
*
psz
)
const
char
*
title
,
const
char
*
psz
)
{
{
vcdplayer_t
*
p_vcdplayer
=
(
vcdplayer_t
*
)
p_access
->
p_sys
;
vcdplayer_t
*
p_vcdplayer
=
(
vcdplayer_t
*
)
p_access
->
p_sys
;
if
(
psz
)
{
if
(
psz
)
{
...
@@ -53,7 +53,7 @@ MetaInfoAddStr(access_t *p_access, char *psz_cat,
...
@@ -53,7 +53,7 @@ MetaInfoAddStr(access_t *p_access, char *psz_cat,
static
inline
void
static
inline
void
MetaInfoAddNum
(
access_t
*
p_access
,
char
*
psz_cat
,
char
*
title
,
int
num
)
MetaInfoAddNum
(
access_t
*
p_access
,
char
*
psz_cat
,
c
onst
c
har
*
title
,
int
num
)
{
{
vcdplayer_t
*
p_vcdplayer
=
(
vcdplayer_t
*
)
p_access
->
p_sys
;
vcdplayer_t
*
p_vcdplayer
=
(
vcdplayer_t
*
)
p_access
->
p_sys
;
dbg_print
(
INPUT_DBG_META
,
"cat %s, field %s: %d"
,
psz_cat
,
title
,
num
);
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)
...
@@ -62,7 +62,7 @@ MetaInfoAddNum(access_t *p_access, char *psz_cat, char *title, int num)
}
}
static
inline
void
static
inline
void
MetaInfoAddHex
(
access_t
*
p_access
,
char
*
psz_cat
,
char
*
title
,
int
hex
)
MetaInfoAddHex
(
access_t
*
p_access
,
char
*
psz_cat
,
c
onst
c
har
*
title
,
int
hex
)
{
{
vcdplayer_t
*
p_vcdplayer
=
(
vcdplayer_t
*
)
p_access
->
p_sys
;
vcdplayer_t
*
p_vcdplayer
=
(
vcdplayer_t
*
)
p_access
->
p_sys
;
dbg_print
(
INPUT_DBG_META
,
"cat %s, field %s: %d"
,
psz_cat
,
title
,
hex
);
dbg_print
(
INPUT_DBG_META
,
"cat %s, field %s: %d"
,
psz_cat
,
title
,
hex
);
...
...
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