diff options
author | Paul Smith <psmith@gnu.org> | 2000-06-07 05:43:37 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2000-06-07 05:43:37 +0000 |
commit | 4a5550c8225d762f684d4047e20cc45274b6a785 (patch) | |
tree | 943515aca19373ad0fe0dce0cb852c2eca7b0cab /w32 | |
parent | e5c40f6e5ad9d485f7caada51e2361758baa67dd (diff) | |
download | gunmake-4a5550c8225d762f684d4047e20cc45274b6a785.tar.gz |
* Lots of bug fixes and cleanup; new i18n files, etc.
Diffstat (limited to 'w32')
-rw-r--r-- | w32/pathstuff.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/w32/pathstuff.c b/w32/pathstuff.c index 52f24a2..d8f3845 100644 --- a/w32/pathstuff.c +++ b/w32/pathstuff.c @@ -16,7 +16,7 @@ convert_vpath_to_windows32(char *Path, char to_delim) * contain blanks get trounced here. Use 8.3 format as a workaround. */ for (etok = Path; etok && *etok; etok++) - if (isblank(*etok)) + if (isblank ((unsigned char) *etok)) *etok = to_delim; return (convert_Path_to_windows32(Path, to_delim)); @@ -42,7 +42,7 @@ convert_Path_to_windows32(char *Path, char to_delim) etok[0] = to_delim; p = ++etok; continue; /* ignore empty bucket */ - } else if (!isalpha(*p)) { + } else if (!isalpha ((unsigned char) *p)) { /* found one to count, handle things like '.' */ *etok = to_delim; p = ++etok; |