blobmsg_json: print int16 elements in blobmsg_format_element (patch by Luka Perkov)
This commit is contained in:
parent
a654d2f42b
commit
5ce9b8912f
1 changed files with 3 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue