Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.openwrt.org/project/libubox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2011-11-17 03:40:37 +0400
committerFelix Fietkau <nbd@openwrt.org>2011-11-17 03:40:37 +0400
commit5ce9b8912fee82135eff74f97311402637eb1357 (patch)
tree7d1a48e84613ce7d75f234a52491ab8642afca80 /blobmsg_json.c
parenta654d2f42b39a355524e8dbbe35b8f8e1671c1c6 (diff)
blobmsg_json: print int16 elements in blobmsg_format_element (patch by Luka Perkov)
Diffstat (limited to 'blobmsg_json.c')
-rw-r--r--blobmsg_json.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/blobmsg_json.c b/blobmsg_json.c
index 3053fa3..dd03736 100644
--- a/blobmsg_json.c
+++ b/blobmsg_json.c
@@ -231,6 +231,9 @@ static void blobmsg_format_element(struct strbuf *s, struct blob_attr *attr, boo
case BLOBMSG_TYPE_BOOL:
sprintf(buf, "%s", *(uint8_t *)data ? "true" : "false");
break;
+ case BLOBMSG_TYPE_INT16:
+ sprintf(buf, "%d", *(uint16_t *)data);
+ break;
case BLOBMSG_TYPE_INT32:
sprintf(buf, "%d", *(uint32_t *)data);
break;