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 | 4c97078de493214d6f3aa2935064d8dd6bf27fb5 (patch) | |
tree | 943515aca19373ad0fe0dce0cb852c2eca7b0cab /w32/pathstuff.c | |
parent | a8e699db1d3861868584c47ed718c1fff5084197 (diff) | |
download | make-4c97078de493214d6f3aa2935064d8dd6bf27fb5.tar.gz |
* Lots of bug fixes and cleanup; new i18n files, etc.
Diffstat (limited to 'w32/pathstuff.c')
-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 52f24a26..d8f38453 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; |