diff --git a/w32/pathstuff.c b/w32/pathstuff.c index 2c612f70..9bd55e63 100644 --- a/w32/pathstuff.c +++ b/w32/pathstuff.c @@ -32,7 +32,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 ((unsigned char) *etok)) + if (ISBLANK ((unsigned char) *etok)) *etok = to_delim; return (convert_Path_to_windows32(Path, to_delim));