diff options
| author | Juli Mallett <jmallett@FreeBSD.org> | 2002-06-20 19:28:00 +0000 |
|---|---|---|
| committer | Juli Mallett <jmallett@FreeBSD.org> | 2002-06-20 19:28:00 +0000 |
| commit | 83739a10773fcc76716d74c3c13fc595024f7ee6 (patch) | |
| tree | 4d221d2c1ba4050e24db2b640c3601afe91956f1 /usr.bin/make/arch.c | |
| parent | c33c8251699cff56c9b7aec1ef14906f886f22fe (diff) | |
Notes
Diffstat (limited to 'usr.bin/make/arch.c')
| -rw-r--r-- | usr.bin/make/arch.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/make/arch.c b/usr.bin/make/arch.c index f925d798f9e9..438bc0190540 100644 --- a/usr.bin/make/arch.c +++ b/usr.bin/make/arch.c @@ -231,11 +231,11 @@ Arch_ParseArchive (linePtr, nodeLst, ctxt) */ Boolean doSubst = FALSE; /* TRUE if need to substitute in memName */ - while (*cp != '\0' && *cp != ')' && isspace (*cp)) { + while (*cp != '\0' && *cp != ')' && isspace ((unsigned char) *cp)) { cp++; } memName = cp; - while (*cp != '\0' && *cp != ')' && !isspace (*cp)) { + while (*cp != '\0' && *cp != ')' && !isspace ((unsigned char) *cp)) { if (*cp == '$') { /* * Variable spec, so call the Var module to parse the puppy @@ -414,7 +414,7 @@ Arch_ParseArchive (linePtr, nodeLst, ctxt) */ do { cp++; - } while (*cp != '\0' && isspace (*cp)); + } while (*cp != '\0' && isspace ((unsigned char) *cp)); *linePtr = cp; return (SUCCESS); |
