Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
b5d134fc
Commit
b5d134fc
authored
Sep 01, 2007
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix a few warnings
parent
7fd6e102
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
src/input/es_out.c
src/input/es_out.c
+3
-2
No files found.
src/input/es_out.c
View file @
b5d134fc
...
...
@@ -736,7 +736,6 @@ static void EsOutProgramEpg( es_out_t *out, int i_group, vlc_epg_t *p_epg )
input_thread_t
*
p_input
=
p_sys
->
p_input
;
es_out_pgrm_t
*
p_pgrm
=
NULL
;
char
*
psz_cat
;
char
*
psz_epg
;
int
i
;
/* Find program */
...
...
@@ -759,7 +758,9 @@ static void EsOutProgramEpg( es_out_t *out, int i_group, vlc_epg_t *p_epg )
/* Update info */
psz_cat
=
EsOutProgramGetMetaName
(
p_pgrm
);
#ifdef HAVE_LOCALTIME_R
asprintf
(
&
psz_epg
,
"EPG %s"
,
psz_cat
);
char
*
psz_epg
;
if
(
asprintf
(
&
psz_epg
,
"EPG %s"
,
psz_cat
)
==
-
1
)
psz_epg
=
NULL
;
input_Control
(
p_input
,
INPUT_DEL_INFO
,
psz_epg
,
NULL
);
msg_Dbg
(
p_input
,
"EsOutProgramEpg: number=%d name=%s"
,
i_group
,
p_pgrm
->
p_epg
->
psz_name
);
for
(
i
=
0
;
i
<
p_pgrm
->
p_epg
->
i_event
;
i
++
)
...
...
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