projects
/
project
/
libubox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a654d2f
)
blobmsg_json: print int16 elements in blobmsg_format_element (patch by Luka Perkov)
author
Felix Fietkau
<nbd@openwrt.org>
Wed, 16 Nov 2011 23:40:37 +0000
(
00:40
+0100)
committer
Felix Fietkau
<nbd@openwrt.org>
Wed, 16 Nov 2011 23:40:37 +0000
(
00:40
+0100)
blobmsg_json.c
patch
|
blob
|
history
diff --git
a/blobmsg_json.c
b/blobmsg_json.c
index 3053fa3c8eaf13e0ee61bc251230c97321b1816d..dd03736a150d3eadf94624f574f8a0b037660cd6 100644
(file)
--- 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;