[vlc-devel] commit: Unused variables ( Rémi Denis-Courmont )
git version control
git at videolan.org
Sat Jul 5 20:27:36 CEST 2008
vlc | branch: master | Rémi Denis-Courmont <rdenis at simphalempin.com> | Sat Jul 5 21:29:47 2008 +0300| [d30bcae9c124ffd2777f39f4e3cd3a7aee5b3959]
Unused variables
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=d30bcae9c124ffd2777f39f4e3cd3a7aee5b3959
---
modules/video_output/x11/xcommon.c | 3 ---
src/input/input.c | 3 ---
2 files changed, 0 insertions(+), 6 deletions(-)
diff --git a/modules/video_output/x11/xcommon.c b/modules/video_output/x11/xcommon.c
index bc185d9..9b70a2c 100644
--- a/modules/video_output/x11/xcommon.c
+++ b/modules/video_output/x11/xcommon.c
@@ -1291,8 +1291,6 @@ static int ManageVideo( vout_thread_t *p_vout )
{
case Button1:
{
- playlist_t *p_playlist;
-
var_Get( p_vout, "mouse-button-down", &val );
val.i_int &= ~1;
var_Set( p_vout, "mouse-button-down", val );
@@ -1320,7 +1318,6 @@ static int ManageVideo( vout_thread_t *p_vout )
case Button3:
{
intf_thread_t *p_intf;
- playlist_t *p_playlist;
var_Get( p_vout, "mouse-button-down", &val );
val.i_int &= ~4;
diff --git a/src/input/input.c b/src/input/input.c
index d0295b5..071bf48 100644
--- a/src/input/input.c
+++ b/src/input/input.c
@@ -447,9 +447,6 @@ static void ObjectKillChildrens( vlc_object_t *p_obj )
}
void input_StopThread( input_thread_t *p_input )
{
- vlc_list_t *p_list;
- int i;
-
/* Set die for input and ALL of this childrens (even (grand-)grand-childrens)
* It is needed here even if it is done in INPUT_CONTROL_SET_DIE handler to
* unlock the control loop */
More information about the vlc-devel
mailing list