Fixed/suppressed HP-UX (GNU) warnings

This commit is contained in:
Ralph Lange
2003-04-23 15:22:56 +00:00
parent 2624a16170
commit 8e44835903
4 changed files with 14 additions and 12 deletions

View File

@@ -777,7 +777,7 @@ long epicsShareAPI dbAddPath(DBBASE *pdbbase,const char *path)
int len;
/* preceding white space is removed */
if (isspace(*path)) {
if (isspace((int)*path)) {
path++;
continue;
}
@@ -795,7 +795,7 @@ long epicsShareAPI dbAddPath(DBBASE *pdbbase,const char *path)
expectingPath = FALSE;
}
/* trailing white space is removed */
while (isspace(*plast)) {
while (isspace((int)*plast)) {
plast--;
}