Squash warnings

svn path=/trunk/netsurf/; revision=12721
This commit is contained in:
John Mark Bell 2011-09-05 07:19:04 +00:00
parent b051cf466f
commit 338544df09
1 changed files with 4 additions and 2 deletions

View File

@ -48,7 +48,9 @@ nserror http___item_list_parse(const char **input,
http__itemparser itemparser, http__item *first,
http__item **items);
#define http__item_list_parse(i, p, f, r) \
http___item_list_parse((i), (http__itemparser) (p), \
(http__item *) (f), (http__item **) (r))
http___item_list_parse((i), \
(http__itemparser) (p), \
(http__item *) (f), \
(http__item **) (void *) (r))
#endif