summaryrefslogtreecommitdiffstats
path: root/c/src/exec/libnetworking/libc/res_init.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1998-08-20 21:47:37 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1998-08-20 21:47:37 +0000
commitff0f694d466fb114c185bf464811658f97d012f1 (patch)
tree1eef0becdabdf6a9902d265a84fc9bf9fd9389d5 /c/src/exec/libnetworking/libc/res_init.c
parentchanged version to 980820-BSD (diff)
downloadrtems-ff0f694d466fb114c185bf464811658f97d012f1.tar.bz2
Fixed many warnings.
Diffstat (limited to 'c/src/exec/libnetworking/libc/res_init.c')
-rw-r--r--c/src/exec/libnetworking/libc/res_init.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/c/src/exec/libnetworking/libc/res_init.c b/c/src/exec/libnetworking/libc/res_init.c
index 8b60889c6f..9371e9fa82 100644
--- a/c/src/exec/libnetworking/libc/res_init.c
+++ b/c/src/exec/libnetworking/libc/res_init.c
@@ -337,7 +337,7 @@ res_init()
break;
net = cp;
while (*cp && !ISSORTMASK(*cp) && *cp != ';' &&
- isascii(*cp) && !isspace(*cp))
+ isascii((int)*cp) && !isspace((int)*cp))
cp++;
n = *cp;
*cp = 0;
@@ -347,7 +347,7 @@ res_init()
*cp++ = n;
net = cp;
while (*cp && *cp != ';' &&
- isascii(*cp) && !isspace(*cp))
+ isascii((int)*cp) && !isspace((int)*cp))
cp++;
n = *cp;
*cp = 0;