[project @ 2005-01-02 04:01:21 by jmb]

Lose warning

svn path=/import/netsurf/; revision=1420
This commit is contained in:
John Mark Bell 2005-01-02 04:01:21 +00:00
parent 8334683068
commit 7a49cba9f3

View File

@ -154,7 +154,7 @@ url_func_result url_normalize(const char *url, char **result)
}
/* unescape non-"reserved" escaped characters */
for (i = 0; i != len; i++) {
for (i = 0; (unsigned)i != len; i++) {
if ((*result)[i] != '%')
continue;
c = tolower((*result)[i + 1]);