summaryrefslogtreecommitdiff
path: root/content/fetch.c
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2004-05-05 16:33:15 +0000
committerJames Bursa <james@netsurf-browser.org>2004-05-05 16:33:15 +0000
commitbb41604045cbabbf9aea502ccc9b0e9db50e6aa7 (patch)
tree73e84936444d0e418cf4c029b347e2205edd552a /content/fetch.c
parent9deb539031dbd92dc9caa45221e21a018fb2a570 (diff)
downloadnetsurf-bb41604045cbabbf9aea502ccc9b0e9db50e6aa7.tar.gz
netsurf-bb41604045cbabbf9aea502ccc9b0e9db50e6aa7.tar.bz2
[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
Diffstat (limited to 'content/fetch.c')
-rw-r--r--content/fetch.c2
1 files changed, 1 insertions, 1 deletions
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 */