Squash warning

svn path=/trunk/netsurf/; revision=4257
This commit is contained in:
John Mark Bell 2008-06-03 22:17:35 +00:00
parent b661f3deaf
commit 5015eb6e87

View File

@ -691,7 +691,7 @@ void fetchcache_parse_header(struct content *c, const char *data,
SKIP_ST(5);
strncpy(c->cache_data.etag, data + i, size - i);
c->cache_data.etag[size - i] = '\0';
for (i = size - i - 1; i >= 0 &&
for (i = size - i - 1; ((int) i) >= 0 &&
(c->cache_data.etag[i] == ' ' ||
c->cache_data.etag[i] == '\t' ||
c->cache_data.etag[i] == '\r' ||