* w32/pathstuff.c: [SV 47996] Use ISBLANK() not isblank().
diff --git a/w32/pathstuff.c b/w32/pathstuff.c
index 2c612f7..9bd55e6 100644
--- a/w32/pathstuff.c
+++ b/w32/pathstuff.c
@@ -32,7 +32,7 @@
          * 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));