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.c
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.c
parent51766c25e94cb991ba37e643b471bbe1fc7ecd43 (diff)
blob: make length variables unsigned
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
Diffstat (limited to 'blob.c')
-rw-r--r--blob.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/blob.c b/blob.c
index 9b721d1..10c1f49 100644
--- a/blob.c
+++ b/blob.c
@@ -134,7 +134,7 @@ blob_new(struct blob_buf *buf, int id, int payload)
}
struct blob_attr *
-blob_put_raw(struct blob_buf *buf, const void *ptr, int len)
+blob_put_raw(struct blob_buf *buf, const void *ptr, unsigned int len)
{
struct blob_attr *attr;
@@ -148,7 +148,7 @@ blob_put_raw(struct blob_buf *buf, const void *ptr, int len)
}
struct blob_attr *
-blob_put(struct blob_buf *buf, int id, const void *ptr, int len)
+blob_put(struct blob_buf *buf, int id, const void *ptr, unsigned int len)
{
struct blob_attr *attr;
@@ -186,7 +186,7 @@ static const int blob_type_minlen[BLOB_ATTR_LAST] = {
};
bool
-blob_check_type(const void *ptr, int len, int type)
+blob_check_type(const void *ptr, unsigned int len, int type)
{
const char *data = ptr;