edbus: Fix instrospect signature

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



SVN revision: 78541
This commit is contained in:
José Roberto de Souza 2012-10-26 16:45:58 +00:00 committed by Lucas De Marchi
parent 6b8370eb78
commit b0c6e26b47
1 changed files with 3 additions and 4 deletions

View File

@ -172,10 +172,9 @@ cb_introspect(const EDBus_Service_Interface *_iface, const EDBus_Message *messag
return reply;
}
static const EDBus_Method instrospect = { "Introspect", EDBUS_ARGS({ "", "" }),
EDBUS_ARGS({ "s", "xml" }),
cb_introspect, 0
};
static const EDBus_Method instrospect = {
"Introspect", NULL, EDBUS_ARGS({ "s", "xml" }), cb_introspect
};
static void
_introspectable_create(void)