[vlc-devel] commit: Remove never used value ( Rémi Denis-Courmont )
git version control
git at videolan.org
Sat May 16 13:22:36 CEST 2009
vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Sat May 16 14:21:12 2009 +0300| [c0d66940ee26be94fd11d5d1de0e5d8c333cf966] | committer: Rémi Denis-Courmont
Remove never used value
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=c0d66940ee26be94fd11d5d1de0e5d8c333cf966
---
modules/gui/pda/pda_callbacks.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/modules/gui/pda/pda_callbacks.c b/modules/gui/pda/pda_callbacks.c
index a5a155a..ca13118 100644
--- a/modules/gui/pda/pda_callbacks.c
+++ b/modules/gui/pda/pda_callbacks.c
@@ -91,7 +91,7 @@ static void PlaylistAddItem(GtkWidget *widget, gchar *name, char **ppsz_options,
{
intf_thread_t *p_intf = GtkGetIntf( widget );
playlist_t *p_playlist;
- int i_id , i_pos=0;
+ int i_pos=0;
GtkTreeView *p_tvplaylist = NULL;
p_playlist = pl_Hold( p_intf );
@@ -132,7 +132,7 @@ static void PlaylistAddItem(GtkWidget *widget, gchar *name, char **ppsz_options,
else
#endif
{
- i_id = playlist_AddExt( p_playlist, (const char*)name,
+ playlist_AddExt( p_playlist, (const char*)name,
(const char*)name,
PLAYLIST_APPEND, PLAYLIST_END,
(mtime_t) 0,
More information about the vlc-devel
mailing list