summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/path.cc
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2002-09-23 00:31:31 +0000
committerChristopher Faylor <me@cgf.cx>2002-09-23 00:31:31 +0000
commitf0227ea3c78d8d23dc35f0939219649447eecfae (patch)
tree0a116e294fa35db8a66901f6ef85b41720913c2f /winsup/cygwin/path.cc
parentc87c8a533f9e917878d433956420953598ab6cd6 (diff)
downloadcygnal-f0227ea3c78d8d23dc35f0939219649447eecfae.tar.gz
cygnal-f0227ea3c78d8d23dc35f0939219649447eecfae.tar.bz2
cygnal-f0227ea3c78d8d23dc35f0939219649447eecfae.zip
More GNUify non-GNU formatted functions calls throughout.
Diffstat (limited to 'winsup/cygwin/path.cc')
-rw-r--r--winsup/cygwin/path.cc2
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]);