summaryrefslogtreecommitdiffstats
path: root/cpukit/httpd/uemf.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2010-03-11 19:12:30 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2010-03-11 19:12:30 +0000
commit391b4dda25431a790ff21bdfd5c78c63b7a58f2a (patch)
tree76c59952dea26406e86aec808ae0da397b98ba2b /cpukit/httpd/uemf.c
parent2010-03-11 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-391b4dda25431a790ff21bdfd5c78c63b7a58f2a.tar.bz2
2010-03-11 Joel Sherrill <joel.sherrill@oarcorp.com>
* ftpd/ftpd.c, httpd/uemf.c, httpd/um.c, httpd/webs.c, httpd/websuemf.c, libblock/src/diskdevs.c, libmisc/capture/capture-cli.c, libmisc/monitor/mon-network.c, libmisc/shell/hexdump-odsyntax.c, libmisc/shell/main_ifconfig.c, libmisc/uuid/parse.c, libnetworking/lib/ftpfs.c, libnetworking/libc/gethostbyht.c, libnetworking/libc/getnetnamadr.c, libnetworking/libc/inet_network.c, libnetworking/rtems/rtems_mii_ioctl.c, score/src/objectgetnameasstring.c: Fix warnings for ctype methods.
Diffstat (limited to 'cpukit/httpd/uemf.c')
-rw-r--r--cpukit/httpd/uemf.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpukit/httpd/uemf.c b/cpukit/httpd/uemf.c
index d2d1eefe31..862a1451de 100644
--- a/cpukit/httpd/uemf.c
+++ b/cpukit/httpd/uemf.c
@@ -168,7 +168,7 @@ int emfInstGet(void)
char_t *strlower(char_t *string)
{
- char_t *s;
+ unsigned char *s;
a_assert(string);
@@ -176,7 +176,7 @@ char_t *strlower(char_t *string)
return NULL;
}
- s = string;
+ s = (unsigned char *)string;
while (*s) {
if (gisupper(*s)) {
*s = (char_t) gtolower(*s);
@@ -194,14 +194,14 @@ char_t *strlower(char_t *string)
char_t *strupper(char_t *string)
{
- char_t *s;
+ unsigned char *s;
a_assert(string);
if (string == NULL) {
return NULL;
}
- s = string;
+ s = (unsigned char *)string;
while (*s) {
if (gislower(*s)) {
*s = (char_t) gtoupper(*s);