summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorLuiz Augusto von Dentz <luiz.dentz@openbossa.org>2008-03-14 19:34:01 +0000
committerLuiz Augusto von Dentz <luiz.dentz@openbossa.org>2008-03-14 19:34:01 +0000
commite9a2d42cf67f70430a563bd23d24774cdb15b97b (patch)
tree5b4046efbd1dd242a293a47b6dd4f952a264a641 /common
parentdc2ec263044b7531c73c156b3f84d9a3ff9ed32c (diff)
Add some missing basic types to dbus_message_iter_append_variant.
Diffstat (limited to 'common')
-rw-r--r--common/dbus-helper.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/common/dbus-helper.c b/common/dbus-helper.c
index 003d9837..70528d52 100644
--- a/common/dbus-helper.c
+++ b/common/dbus-helper.c
@@ -436,6 +436,12 @@ void dbus_message_iter_append_variant(DBusMessageIter *iter, int type, void *val
case DBUS_TYPE_INT16:
sig = DBUS_TYPE_INT16_AS_STRING;
break;
+ case DBUS_TYPE_UINT16:
+ sig = DBUS_TYPE_UINT16_AS_STRING;
+ break;
+ case DBUS_TYPE_INT32:
+ sig = DBUS_TYPE_INT32_AS_STRING;
+ break;
case DBUS_TYPE_UINT32:
sig = DBUS_TYPE_UINT32_AS_STRING;
break;