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:
Diffstat (limited to 'blobmsg.c')
-rw-r--r--blobmsg.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/blobmsg.c b/blobmsg.c
index 97e0c20..1a8b783 100644
--- a/blobmsg.c
+++ b/blobmsg.c
@@ -35,7 +35,8 @@ bool blobmsg_check_attr(const struct blob_attr *attr, bool name)
{
const struct blobmsg_hdr *hdr;
const char *data;
- int id, len;
+ size_t len;
+ int id;
if (blob_len(attr) < sizeof(struct blobmsg_hdr))
return false;