diff options
Diffstat (limited to 'xs_url.h')
| -rw-r--r-- | xs_url.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -17,7 +17,7 @@ xs_str *xs_url_dec(const char *str) while (*str) { if (*str == '%') { - int i; + unsigned int i; if (sscanf(str + 1, "%02x", &i) == 1) { unsigned char uc = i; |