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-07-29 14:56:18 +0400
committerFelix Fietkau <nbd@openwrt.org>2011-07-29 14:56:48 +0400
commitabbc140e8d9c11360bea3c614608290aa051e673 (patch)
treedb2c9ab0c6660c0a99fd74d28626589aeb080983 /blobmsg_json.c
parented9b5c986b06bc90017461f8d0b8f45937a79598 (diff)
add BLOBMSG_TYPE_BOOL as an alias for BLOBMSG_TYPE_INT8
Diffstat (limited to 'blobmsg_json.c')
-rw-r--r--blobmsg_json.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/blobmsg_json.c b/blobmsg_json.c
index 0539bd1..3053fa3 100644
--- a/blobmsg_json.c
+++ b/blobmsg_json.c
@@ -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: