summaryrefslogtreecommitdiffstats
path: root/hcid
diff options
context:
space:
mode:
authorLuiz Augusto von Dentz <luiz.dentz@openbossa.org>2007-10-03 18:49:14 +0000
committerLuiz Augusto von Dentz <luiz.dentz@openbossa.org>2007-10-03 18:49:14 +0000
commit70f0f80c49b989f346bd3932f26bffcbdb7f75db (patch)
tree16deea62dded828940627087e1f4c83958cfe2fa /hcid
parenta13f569db6e188218919014e97e37e457f5940ee (diff)
Fix dict signatures.
Diffstat (limited to 'hcid')
-rw-r--r--hcid/adapter.c4
-rw-r--r--hcid/dbus-service.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/hcid/adapter.c b/hcid/adapter.c
index 496d13d3..1ea9990f 100644
--- a/hcid/adapter.c
+++ b/hcid/adapter.c
@@ -3300,7 +3300,7 @@ GSList *service_classes_str(uint32_t class)
static DBusMethodVTable adapter_methods[] = {
{ "GetInfo", adapter_get_info,
- "", "{sv}" },
+ "", "a{sv}" },
{ "GetAddress", adapter_get_address,
"", "s" },
{ "GetVersion", adapter_get_version,
@@ -3345,7 +3345,7 @@ static DBusMethodVTable adapter_methods[] = {
"s", "" },
{ "GetRemoteInfo", adapter_get_remote_info,
- "s", "{sv}" },
+ "s", "a{sv}" },
{ "GetRemoteServiceRecord", adapter_get_remote_svc,
"su", "ay" },
{ "GetRemoteServiceRecordAsXML", adapter_get_remote_svc_xml,
diff --git a/hcid/dbus-service.c b/hcid/dbus-service.c
index 87807c6f..eb86a329 100644
--- a/hcid/dbus-service.c
+++ b/hcid/dbus-service.c
@@ -647,7 +647,7 @@ static DBusHandlerResult remove_trust(DBusConnection *conn,
}
static DBusMethodVTable service_methods[] = {
- { "GetInfo", get_info, "", "{sv}" },
+ { "GetInfo", get_info, "", "a{sv}" },
{ "GetIdentifier", get_identifier, "", "s" },
{ "GetName", get_name, "", "s" },
{ "GetDescription", get_description, "", "s" },