From bb41604045cbabbf9aea502ccc9b0e9db50e6aa7 Mon Sep 17 00:00:00 2001 From: James Bursa Date: Wed, 5 May 2004 16:33:15 +0000 Subject: [project @ 2004-05-05 16:33:15 by bursa] Fix some compiler warnings. Ignore size attribute for file inputs. svn path=/import/netsurf/; revision=828 --- content/fetch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'content/fetch.c') diff --git a/content/fetch.c b/content/fetch.c index 35f19ca0f..c8630f343 100644 --- a/content/fetch.c +++ b/content/fetch.c @@ -599,7 +599,7 @@ size_t fetch_curl_data(void * data, size_t size, size_t nmemb, struct fetch *f) size_t fetch_curl_header(char * data, size_t size, size_t nmemb, struct fetch *f) { - int i; + unsigned int i; size *= nmemb; if (12 < size && strncasecmp(data, "Location:", 9) == 0) { /* extract Location header */ -- cgit v1.2.3