]> git.ipfire.org Git - thirdparty/make.git/commitdiff
* w32/pathstuff.c: [SV 47996] Use ISBLANK() not isblank().
authorPaul Smith <psmith@gnu.org>
Wed, 25 May 2016 21:25:25 +0000 (17:25 -0400)
committerPaul Smith <psmith@gnu.org>
Tue, 31 May 2016 07:17:26 +0000 (03:17 -0400)
w32/pathstuff.c

index 2c612f70601fab6dea6ea18c0f8db5f469d55cae..9bd55e636e9f93ab4f60714ba6dcc112203a7026 100644 (file)
@@ -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));