mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-11-24 15:29:45 +03:00
[project @ 2005-01-02 04:01:21 by jmb]
Lose warning svn path=/import/netsurf/; revision=1420
This commit is contained in:
parent
8334683068
commit
7a49cba9f3
@ -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]);
|
||||
|
Loading…
Reference in New Issue
Block a user