diff options
Diffstat (limited to 'gcc/config/winnt/ld.c')
-rw-r--r-- | gcc/config/winnt/ld.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/config/winnt/ld.c b/gcc/config/winnt/ld.c index 67d53e78321..b02d1ede229 100644 --- a/gcc/config/winnt/ld.c +++ b/gcc/config/winnt/ld.c @@ -86,7 +86,7 @@ locate_file (file_name, path_val) /* Handle absolute pathnames */ if (file_name [0] == '/' || file_name [0] == DIR_SEPARATOR - || isalpha (file_name [0]) && file_name [1] == ':') + || ISALPHA (file_name [0]) && file_name [1] == ':') { strncpy (buf, file_name, sizeof buf); buf[sizeof buf - 1] = '\0'; |