summaryrefslogtreecommitdiffstats
path: root/cpukit/httpd/websuemf.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/httpd/websuemf.c')
-rw-r--r--cpukit/httpd/websuemf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/httpd/websuemf.c b/cpukit/httpd/websuemf.c
index 262956ee5f..267ada8c2f 100644
--- a/cpukit/httpd/websuemf.c
+++ b/cpukit/httpd/websuemf.c
@@ -84,7 +84,7 @@ int strcmpci(char_t *s1, char_t *s2)
}
do {
- rc = gtolower(*s1) - gtolower(*s2);
+ rc = gtolower((int)*s1) - gtolower((int)*s2);
if (*s1 == '\0') {
break;
}