diff options
Diffstat (limited to 'winsup/cygwin/path.cc')
-rw-r--r-- | winsup/cygwin/path.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/path.cc b/winsup/cygwin/path.cc index a185e60e9..29e21674b 100644 --- a/winsup/cygwin/path.cc +++ b/winsup/cygwin/path.cc @@ -1304,7 +1304,7 @@ slash_unc_prefix_p (const char *path) && isalpha (path[2]) && path[3] != 0 && !isdirsep (path[3]) - && ((p = strpbrk(path + 3, "\\/")) != NULL)); + && ((p = strpbrk (path + 3, "\\/")) != NULL)); if (!ret || p == NULL) return ret; return ret && isalnum (p[1]); |