From cf4ed2ebe81c3188610cd76c113840bb2bc6197e Mon Sep 17 00:00:00 2001 From: Paul Smith Date: Wed, 25 May 2016 17:25:25 -0400 Subject: [PATCH] * w32/pathstuff.c: [SV 47996] Use ISBLANK() not isblank(). --- w32/pathstuff.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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));