Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
d7ee68a7
Commit
d7ee68a7
authored
May 20, 2006
by
Jean-Paul Saman
Browse files
Remove unused variables
parent
a63d4a77
Changes
2
Hide whitespace changes
Inline
Side-by-side
modules/codec/cmml/history.c
View file @
d7ee68a7
...
...
@@ -107,7 +107,7 @@ static void history_Dump( history_t *p_history )
void
*
pv_item
;
xarray_ObjectAtIndex
(
p_history
->
p_xarray
,
i
,
&
pv_item
);
p_item
=
(
history_item_t
*
)
pv_item
;
if
(
p_item
==
NULL
)
...
...
@@ -203,7 +203,7 @@ void history_PruneAndInsert( history_t *p_history, history_item_t *p_item )
unsigned
int
history_Count
(
history_t
*
p_history
)
{
int
i_count
;
unsigned
int
i_count
;
xarray_Count
(
p_history
->
p_xarray
,
&
i_count
);
return
i_count
;
}
...
...
modules/codec/cmml/intf.c
View file @
d7ee68a7
...
...
@@ -818,8 +818,6 @@ static int DisplayAnchor( intf_thread_t *p_intf,
if
(
p_vout
)
{
text_style_t
*
p_style
=
NULL
;
if
(
psz_anchor_url
)
{
/* Should display subtitle underlined and in blue, but it looks
...
...
@@ -841,7 +839,6 @@ static int DisplayAnchor( intf_thread_t *p_intf,
{
return
VLC_EGENERIC
;
}
}
else
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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