summaryrefslogtreecommitdiffstats
path: root/cpukit/httpd/asp.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/httpd/asp.c')
-rw-r--r--cpukit/httpd/asp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/httpd/asp.c b/cpukit/httpd/asp.c
index b6402b78ac..26fcac3a3c 100644
--- a/cpukit/httpd/asp.c
+++ b/cpukit/httpd/asp.c
@@ -287,7 +287,7 @@ static char_t *strtokcmp(char_t *s1, char_t *s2)
s1 = skipWhite(s1);
len = gstrlen(s2);
- for (len = gstrlen(s2); len > 0 && (tolower(*s1) == tolower(*s2)); len--) {
+ for (len = gstrlen(s2); len > 0 && (tolower((int)*s1) == tolower((int)*s2)); len--) {
if (*s2 == '\0') {
return s1;
}
@@ -312,7 +312,7 @@ static char_t *skipWhite(char_t *s)
if (s == NULL) {
return s;
}
- while (*s && gisspace(*s)) {
+ while (*s && gisspace((int)*s)) {
s++;
}
return s;