summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
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;