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.h
parented9b5c986b06bc90017461f8d0b8f45937a79598 (diff)
add BLOBMSG_TYPE_BOOL as an alias for BLOBMSG_TYPE_INT8
Diffstat (limited to 'blobmsg.h')
-rw-r--r--blobmsg.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/blobmsg.h b/blobmsg.h
index e9a0b69..2fb61d4 100644
--- a/blobmsg.h
+++ b/blobmsg.h
@@ -31,7 +31,8 @@ enum blobmsg_type {
BLOBMSG_TYPE_INT16,
BLOBMSG_TYPE_INT8,
__BLOBMSG_TYPE_LAST,
- BLOBMSG_TYPE_LAST = __BLOBMSG_TYPE_LAST - 1
+ BLOBMSG_TYPE_LAST = __BLOBMSG_TYPE_LAST - 1,
+ BLOBMSG_TYPE_BOOL = BLOBMSG_TYPE_INT8,
};
struct blobmsg_hdr {