From: Ismo Puustinen Date: Mon, 10 Mar 2014 09:02:18 +0000 (+0200) Subject: resource-dbus: shared and mandatory property sigs 's' -> 'b'. X-Git-Tag: v0.0.50~8 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=30d07691ce57e66f5f37e71fb62d96b761e4082f;p=profile%2Fivi%2Fmurphy.git resource-dbus: shared and mandatory property sigs 's' -> 'b'. --- diff --git a/src/plugins/plugin-resource-dbus.c b/src/plugins/plugin-resource-dbus.c index 520ae7d..14b20f1 100644 --- a/src/plugins/plugin-resource-dbus.c +++ b/src/plugins/plugin-resource-dbus.c @@ -1341,7 +1341,7 @@ static int resource_cb(mrp_dbus_t *dbus, mrp_dbus_msg_t *msg, void *data) if (strcmp(name, PROP_MANDATORY) == 0) { uint32_t v = 0; bool *value; - sig = "s"; + sig = "b"; value = mrp_allocz(sizeof(bool)); if (!value) { @@ -1361,7 +1361,7 @@ static int resource_cb(mrp_dbus_t *dbus, mrp_dbus_msg_t *msg, void *data) else if (strcmp(name, PROP_SHARED) == 0) { uint32_t v = 0; bool *value; - sig = "s"; + sig = "b"; value = mrp_allocz(sizeof(bool)); if (!value) {