add BLOBMSG_TYPE_BOOL as an alias for BLOBMSG_TYPE_INT8
[project/libubox.git] / blobmsg_json.c
index 0539bd1654db79e2abd985b2862531f32a6bfc7d..3053fa3c8eaf13e0ee61bc251230c97321b1816d 100644 (file)
@@ -228,7 +228,7 @@ static void blobmsg_format_element(struct strbuf *s, struct blob_attr *attr, boo
 
        data_str = buf;
        switch(blob_id(attr)) {
-       case BLOBMSG_TYPE_INT8:
+       case BLOBMSG_TYPE_BOOL:
                sprintf(buf, "%s", *(uint8_t *)data ? "true" : "false");
                break;
        case BLOBMSG_TYPE_INT32: