summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2012-06-20 13:51:32 +0300
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2012-06-20 13:58:59 +0300
commitdc0a53f7c33ba1d2b7b5b837ee34bee3b7e6dcc2 (patch)
treeae0417f4d9c33b791001138311853f2f8c810745
parentc671602e7e1b286389ecc1319f267a7bf6358b41 (diff)
downloadobexd-dc0a53f7c33ba1d2b7b5b837ee34bee3b7e6dcc2.tar.gz
client: Fix wrong signature of MessageAccess.SetFolder
D-Bus string signature is 's' not 'string'
-rw-r--r--client/map.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/map.c b/client/map.c
index 18c4af1..5242cb3 100644
--- a/client/map.c
+++ b/client/map.c
@@ -192,7 +192,7 @@ fail:
static const GDBusMethodTable map_methods[] = {
{ GDBUS_ASYNC_METHOD("SetFolder",
- GDBUS_ARGS({ "name", "string" }), NULL,
+ GDBUS_ARGS({ "name", "s" }), NULL,
map_setpath) },
{ GDBUS_ASYNC_METHOD("GetFolderListing",
GDBUS_ARGS({ "dummy", "a{ss}" }),