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>2010-12-06 01:31:33 +0300
committerFelix Fietkau <nbd@openwrt.org>2010-12-06 01:31:33 +0300
commitd110a016e354d66cf86dddb53e3257ac9821896d (patch)
tree8e3ad6e95c23910b61f7256be239b72c44fd6c76 /blob.c
parent0d1a602dcfe4e13e470a0c0bb23e1d99be3f15b5 (diff)
constify blob_attr_info
Diffstat (limited to 'blob.c')
-rw-r--r--blob.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/blob.c b/blob.c
index 823eb24..89ed31a 100644
--- a/blob.c
+++ b/blob.c
@@ -132,7 +132,7 @@ static const int blob_type_minlen[BLOB_ATTR_LAST] = {
};
int
-blob_parse(struct blob_attr *attr, struct blob_attr **data, struct blob_attr_info *info, int max)
+blob_parse(struct blob_attr *attr, struct blob_attr **data, const struct blob_attr_info *info, int max)
{
struct blob_attr *pos;
int found = 0;