efreet: Build fix, edbus_service_interface_register() signature has changed

Patch by: José Roberto de Souza  <zehortigoza@profusion.mobi>



SVN revision: 78804
This commit is contained in:
José Roberto de Souza 2012-11-01 16:41:35 +00:00 committed by Lucas De Marchi
parent 20ec8868e6
commit ca20fab7d4
1 changed files with 5 additions and 2 deletions

View File

@ -117,6 +117,10 @@ static const EDBus_Method methods[] = {
{ NULL, NULL, NULL, NULL, 0 }
};
const static EDBus_Service_Interface_Desc desc = {
INTERFACE, methods, signals
};
static void
on_name_request(void *data __UNUSED__, const EDBus_Message *msg, EDBus_Pending *pending __UNUSED__)
{
@ -140,8 +144,7 @@ on_name_request(void *data __UNUSED__, const EDBus_Message *msg, EDBus_Pending *
return;
}
iface = edbus_service_interface_register(conn, PATH, INTERFACE, methods,
signals);
iface = edbus_service_interface_register(conn, PATH, &desc);
}
/* external */