dbus: fix compiling error

Signed-off-by: Gregor Best <gbe@ring0.de>
Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
Gregor Best 2010-06-06 13:55:46 +02:00 committed by Julien Danjou
parent bd30468d7a
commit 6e6a07b660
1 changed files with 2 additions and 2 deletions

4
dbus.c
View File

@ -282,7 +282,7 @@ a_dbus_convert_value(lua_State *L, int idx, DBusMessageIter *iter)
{
luaA_warn(globalconf.L,
"your D-Bus signal handling method returned wrong number of arguments");
return;
return false;
}
/* Push the array */
@ -424,7 +424,7 @@ a_dbus_process_request(DBusConnection *dbus_connection, DBusMessage *msg)
luaA_warn(globalconf.L,
"your D-Bus signal handling method returned wrong number of arguments");
/* Remove returned values from the stack */
lua_pop(L, - n);
lua_pop(globalconf.L, - n);
return;
}