diff options
Diffstat (limited to 'lib/libfetch/fetch.c')
-rw-r--r-- | lib/libfetch/fetch.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libfetch/fetch.c b/lib/libfetch/fetch.c index b98fa56..900b685 100644 --- a/lib/libfetch/fetch.c +++ b/lib/libfetch/fetch.c @@ -369,7 +369,7 @@ fetchParseURL(const char *URL) /* port */ if (*p == ':') { for (q = ++p; *q && (*q != '/'); q++) - if (isdigit(*q)) + if (isdigit((int)*q)) u->port = u->port * 10 + (*q - '0'); else { /* invalid port */ @@ -395,7 +395,7 @@ nohost: } u->doc = doc; while (*p != '\0') { - if (!isspace(*p)) { + if (!isspace((int)*p)) { *doc++ = *p++; } else { *doc++ = '%'; |