summaryrefslogtreecommitdiff
path: root/utils/http/generics.h
diff options
context:
space:
mode:
Diffstat (limited to 'utils/http/generics.h')
-rw-r--r--utils/http/generics.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/http/generics.h b/utils/http/generics.h
index a5af73458..878627ed4 100644
--- a/utils/http/generics.h
+++ b/utils/http/generics.h
@@ -29,12 +29,12 @@
typedef struct http__item {
struct http__item *next; /**< Next item in list, or NULL */
- void (*free)(struct http__item *self); /**< Item destructor */
+ void (*ffree)(struct http__item *self); /**< Item destructor */
} http__item;
#define HTTP__ITEM_INIT(item, n, f) \
((http__item *) (item))->next = (http__item *) (n); \
- ((http__item *) (item))->free = (void (*)(http__item *)) (f)
+ ((http__item *) (item))->ffree = (void (*)(http__item *)) (f)
/**
* Type of an item parser