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
path: root/blob.h
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2014-04-27 18:29:31 +0400
committerFelix Fietkau <nbd@openwrt.org>2014-04-27 18:29:31 +0400
commitaa01be8ed07f24a375e74c5da7550171d6f9ca8e (patch)
tree6c606e0f9890cc9ce2b2c17f234dc58bf2c38d11 /blob.h
parent51766c25e94cb991ba37e643b471bbe1fc7ecd43 (diff)
blob: make length variables unsigned
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
Diffstat (limited to 'blob.h')
-rw-r--r--blob.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/blob.h b/blob.h
index 37a572b..bf96241 100644
--- a/blob.h
+++ b/blob.h
@@ -116,7 +116,7 @@ blob_raw_len(const struct blob_attr *attr)
static inline unsigned int
blob_pad_len(const struct blob_attr *attr)
{
- int len = blob_raw_len(attr);
+ unsigned int len = blob_raw_len(attr);
len = (len + BLOB_ATTR_ALIGN - 1) & ~(BLOB_ATTR_ALIGN - 1);
return len;
}
@@ -195,11 +195,11 @@ extern void blob_buf_grow(struct blob_buf *buf, int required);
extern struct blob_attr *blob_new(struct blob_buf *buf, int id, int payload);
extern void *blob_nest_start(struct blob_buf *buf, int id);
extern void blob_nest_end(struct blob_buf *buf, void *cookie);
-extern struct blob_attr *blob_put(struct blob_buf *buf, int id, const void *ptr, int len);
-extern bool blob_check_type(const void *ptr, int len, int type);
+extern struct blob_attr *blob_put(struct blob_buf *buf, int id, const void *ptr, unsigned int len);
+extern bool blob_check_type(const void *ptr, unsigned int len, int type);
extern int blob_parse(struct blob_attr *attr, struct blob_attr **data, const struct blob_attr_info *info, int max);
extern struct blob_attr *blob_memdup(struct blob_attr *attr);
-extern struct blob_attr *blob_put_raw(struct blob_buf *buf, const void *ptr, int len);
+extern struct blob_attr *blob_put_raw(struct blob_buf *buf, const void *ptr, unsigned int len);
static inline struct blob_attr *
blob_put_string(struct blob_buf *buf, int id, const char *str)