mirror of
https://git.savannah.gnu.org/git/make.git
synced 2024-12-29 00:05:58 +00:00
* w32/pathstuff.c: [SV 47996] Use ISBLANK() not isblank().
This commit is contained in:
parent
5a4f9a67a3
commit
cf4ed2ebe8
1 changed files with 1 additions and 1 deletions
|
@ -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.
|
* contain blanks get trounced here. Use 8.3 format as a workaround.
|
||||||
*/
|
*/
|
||||||
for (etok = Path; etok && *etok; etok++)
|
for (etok = Path; etok && *etok; etok++)
|
||||||
if (isblank ((unsigned char) *etok))
|
if (ISBLANK ((unsigned char) *etok))
|
||||||
*etok = to_delim;
|
*etok = to_delim;
|
||||||
|
|
||||||
return (convert_Path_to_windows32(Path, to_delim));
|
return (convert_Path_to_windows32(Path, to_delim));
|
||||||
|
|
Loading…
Reference in a new issue