summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClaudio Takahasi <claudio.takahasi@openbossa.org>2007-05-18 14:49:06 +0000
committerClaudio Takahasi <claudio.takahasi@openbossa.org>2007-05-18 14:49:06 +0000
commitd87420bcd319c66010fc36061ea0c354ef117d1d (patch)
tree789c4803f648571f74343b87b9e0b307ebcb34e9
parent098b83ac08ad6c1a92a59f6cfbbf61de3ec8b643 (diff)
dbus-helper: added int16 support to append dict entry
-rw-r--r--common/dbus-helper.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/common/dbus-helper.c b/common/dbus-helper.c
index 4d15f418..673ec2b5 100644
--- a/common/dbus-helper.c
+++ b/common/dbus-helper.c
@@ -432,6 +432,9 @@ void dbus_message_iter_append_dict_entry(DBusMessageIter *dict,
case DBUS_TYPE_STRING:
sig = DBUS_TYPE_STRING_AS_STRING;
break;
+ case DBUS_TYPE_INT16:
+ sig = DBUS_TYPE_INT16_AS_STRING;
+ break;
case DBUS_TYPE_UINT32:
sig = DBUS_TYPE_UINT32_AS_STRING;
break;