remove blob_buf::priv
[project/libubox.git] / blob.h
diff --git a/blob.h b/blob.h
index 401a355..a7afdcb 100644 (file)
--- a/blob.h
+++ b/blob.h
@@ -115,7 +115,6 @@ struct blob_buf {
        bool (*grow)(struct blob_buf *buf, int minlen);
        int buflen;
        void *buf;
-       void *priv;
 };
 
 /*
@@ -141,7 +140,7 @@ blob_id(struct blob_attr *attr)
  * blob_len: returns the length of the attribute's payload
  */
 static inline unsigned int
-blob_len(struct blob_attr *attr)
+blob_len(const struct blob_attr *attr)
 {
        return (be32_to_cpu(attr->id_len) & BLOB_ATTR_LEN_MASK) - sizeof(struct blob_attr);
 }