summaryrefslogtreecommitdiff
path: root/amiga/icon.c
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2016-04-18 23:17:38 +0100
committerVincent Sanders <vince@kyllikki.org>2016-04-18 23:17:38 +0100
commit46e1061ef3b156016c689698d35bbbbbebf17471 (patch)
treec3e3a9b71c0acfb3f20712eb3593daa7c83b5501 /amiga/icon.c
parent392307bb1fdf4186f26300631fe3710d895cf7ce (diff)
downloadnetsurf-46e1061ef3b156016c689698d35bbbbbebf17471.tar.gz
netsurf-46e1061ef3b156016c689698d35bbbbbebf17471.tar.bz2
fix missing struct on http parameter declaration due to header change
Diffstat (limited to 'amiga/icon.c')
-rw-r--r--amiga/icon.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/amiga/icon.c b/amiga/icon.c
index 1370c3c04..e75bf82b0 100644
--- a/amiga/icon.c
+++ b/amiga/icon.c
@@ -65,7 +65,7 @@ typedef struct amiga_icon_content {
} amiga_icon_content;
static nserror amiga_icon_create(const content_handler *handler,
- lwc_string *imime_type, const http_parameter *params,
+ lwc_string *imime_type, const struct http_parameter *params,
llcache_handle *llcache, const char *fallback_charset,
bool quirks, struct content **c);
static bool amiga_icon_convert(struct content *c);
@@ -103,7 +103,7 @@ CONTENT_FACTORY_REGISTER_TYPES(amiga_icon, amiga_icon_types,
amiga_icon_content_handler)
nserror amiga_icon_create(const content_handler *handler,
- lwc_string *imime_type, const http_parameter *params,
+ lwc_string *imime_type, const struct http_parameter *params,
llcache_handle *llcache, const char *fallback_charset,
bool quirks, struct content **c)
{