diff options
author | Christopher Faylor <me@cgf.cx> | 2007-02-20 00:16:18 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2007-02-20 00:16:18 +0000 |
commit | 510a85cbf974e4e1590a5eb625177795642ac9b8 (patch) | |
tree | 8c68ab8e8193d54a52f37ab507427ee6cfb62190 /winsup/cygwin/glob.cc | |
parent | b440e09025fc34d119c8f3f03a3ba6088e8c05ae (diff) | |
download | cygnal-510a85cbf974e4e1590a5eb625177795642ac9b8.tar.gz cygnal-510a85cbf974e4e1590a5eb625177795642ac9b8.tar.bz2 cygnal-510a85cbf974e4e1590a5eb625177795642ac9b8.zip |
Remove extraneous whitespace.
* pinfo.cc (commune_process): Use default argument to lock_process.
* sigproc.cc: Update copyright.
* select.cc: Ditto.
Diffstat (limited to 'winsup/cygwin/glob.cc')
-rw-r--r-- | winsup/cygwin/glob.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/winsup/cygwin/glob.cc b/winsup/cygwin/glob.cc index 6a0d4e6f1..490608130 100644 --- a/winsup/cygwin/glob.cc +++ b/winsup/cygwin/glob.cc @@ -176,7 +176,7 @@ static int glob1(Char *, glob_t *, size_t *); static int glob2(Char *, Char *, Char *, Char *, glob_t *, size_t *); static int glob3(Char *, Char *, Char *, Char *, Char *, glob_t *, size_t *); static int globextend(const Char *, glob_t *, size_t *); -static const Char * +static const Char * globtilde(const Char *, Char *, size_t, glob_t *); static int globexp1(const Char *, glob_t *, size_t *); static int globexp2(const Char *, const Char *, glob_t *, int *, size_t *); @@ -397,8 +397,8 @@ globtilde(const Char *pattern, Char *patbuf, size_t patbuf_len, glob_t *pglob) if (*pattern != TILDE || !(pglob->gl_flags & GLOB_TILDE)) return pattern; - /* - * Copy up to the end of the string or / + /* + * Copy up to the end of the string or / */ eb = &patbuf[patbuf_len - 1]; for (p = pattern + 1, h = (char *) patbuf; |