blobmsg_json: print int16 elements in blobmsg_format_element (patch by Luka Perkov)
authorFelix Fietkau <nbd@openwrt.org>
Wed, 16 Nov 2011 23:40:37 +0000 (00:40 +0100)
committerFelix Fietkau <nbd@openwrt.org>
Wed, 16 Nov 2011 23:40:37 +0000 (00:40 +0100)
blobmsg_json.c

index 3053fa3c8eaf13e0ee61bc251230c97321b1816d..dd03736a150d3eadf94624f574f8a0b037660cd6 100644 (file)
@@ -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;