diff options
author | Claudio Takahasi <claudio.takahasi@openbossa.org> | 2007-08-13 19:04:42 +0000 |
---|---|---|
committer | Claudio Takahasi <claudio.takahasi@openbossa.org> | 2007-08-13 19:04:42 +0000 |
commit | 47b21533a202883df227a106b2838b172d8a81f5 (patch) | |
tree | ca8d2a7c03fbf35d4d474d19c001f24b68675f05 /common | |
parent | f0305ee7aad91c359ecc2e1bc1e92eb6b4fb0fa9 (diff) |
append dict: added byte type
Diffstat (limited to 'common')
-rw-r--r-- | common/dbus-helper.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/common/dbus-helper.c b/common/dbus-helper.c index a604f6de..1983a8ee 100644 --- a/common/dbus-helper.c +++ b/common/dbus-helper.c @@ -429,6 +429,9 @@ void dbus_message_iter_append_dict_entry(DBusMessageIter *dict, case DBUS_TYPE_STRING: sig = DBUS_TYPE_STRING_AS_STRING; break; + case DBUS_TYPE_BYTE: + sig = DBUS_TYPE_BYTE_AS_STRING; + break; case DBUS_TYPE_INT16: sig = DBUS_TYPE_INT16_AS_STRING; break; |