[vlc-devel] commit: Kill warnings about unused variables. (jpeg?) (Antoine Cellerier )

git version control git at videolan.org
Sat Feb 27 22:05:40 CET 2010


vlc | branch: master | Antoine Cellerier <dionoea at videolan.org> | Sat Feb 27 22:04:53 2010 +0100| [725f76a196227157cd86c1f6f55dc494fba0528a] | committer: Antoine Cellerier 

Kill warnings about unused variables. (jpeg?)

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=725f76a196227157cd86c1f6f55dc494fba0528a
---

 modules/misc/lua/libs/dialog.c |    4 ----
 1 files changed, 0 insertions(+), 4 deletions(-)

diff --git a/modules/misc/lua/libs/dialog.c b/modules/misc/lua/libs/dialog.c
index 7a276f5..906e63e 100644
--- a/modules/misc/lua/libs/dialog.c
+++ b/modules/misc/lua/libs/dialog.c
@@ -291,8 +291,6 @@ static int vlclua_dialog_delete( lua_State *L )
 /** Show the dialog */
 static int vlclua_dialog_show( lua_State *L )
 {
-    vlc_object_t *p_mgr = vlclua_get_this( L );
-
     extension_dialog_t **pp_dlg =
             (extension_dialog_t**) luaL_checkudata( L, 1, "dialog" );
     if( !pp_dlg || !*pp_dlg )
@@ -308,8 +306,6 @@ static int vlclua_dialog_show( lua_State *L )
 /** Hide the dialog */
 static int vlclua_dialog_hide( lua_State *L )
 {
-    vlc_object_t *p_mgr = vlclua_get_this( L );
-
     extension_dialog_t **pp_dlg =
             (extension_dialog_t**) luaL_checkudata( L, 1, "dialog" );
     if( !pp_dlg || !*pp_dlg )




More information about the vlc-devel mailing list