add BLOBMSG_TYPE_BOOL as an alias for BLOBMSG_TYPE_INT8
This commit is contained in:
parent
ed9b5c986b
commit
abbc140e8d
2 changed files with 3 additions and 2 deletions
|
@ -31,7 +31,8 @@ enum blobmsg_type {
|
||||||
BLOBMSG_TYPE_INT16,
|
BLOBMSG_TYPE_INT16,
|
||||||
BLOBMSG_TYPE_INT8,
|
BLOBMSG_TYPE_INT8,
|
||||||
__BLOBMSG_TYPE_LAST,
|
__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 {
|
struct blobmsg_hdr {
|
||||||
|
|
|
@ -228,7 +228,7 @@ static void blobmsg_format_element(struct strbuf *s, struct blob_attr *attr, boo
|
||||||
|
|
||||||
data_str = buf;
|
data_str = buf;
|
||||||
switch(blob_id(attr)) {
|
switch(blob_id(attr)) {
|
||||||
case BLOBMSG_TYPE_INT8:
|
case BLOBMSG_TYPE_BOOL:
|
||||||
sprintf(buf, "%s", *(uint8_t *)data ? "true" : "false");
|
sprintf(buf, "%s", *(uint8_t *)data ? "true" : "false");
|
||||||
break;
|
break;
|
||||||
case BLOBMSG_TYPE_INT32:
|
case BLOBMSG_TYPE_INT32:
|
||||||
|
|
Loading…
Reference in a new issue