Commit 725f76a1 authored by Antoine Cellerier's avatar Antoine Cellerier

Kill warnings about unused variables. (jpeg?)

parent f782f86e
......@@ -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 )
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment