Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2001-01-08 07:02:02 +0300
committerChristopher Faylor <me@cgf.cx>2001-01-08 07:02:02 +0300
commit077ec4cb37134f2e90dd282ce9c6e496052e35e5 (patch)
treed551c0b2fc0000d7a858d98afbd1c5d27ecb8ac1 /winsup/cygwin/glob.c
parent10422a10ea57f189556171b00c691536512beaa0 (diff)
* pinfo.cc (codepage_init): Move function.
* environ.cc (codepage_init): To here. * exceptoins.cc (SIG_NONMASKABLE): Remove SIGCONT from consideration since it is supposed to be maskable. * signal.cc (sigaction): Ditto. * sigproc.cc (wait_sig): Ditto. * winsup.h: Eliminate global declaration of codepage_init.
Diffstat (limited to 'winsup/cygwin/glob.c')
-rw-r--r--winsup/cygwin/glob.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/glob.c b/winsup/cygwin/glob.c
index 59e6bbf29..f50ef8e3c 100644
--- a/winsup/cygwin/glob.c
+++ b/winsup/cygwin/glob.c
@@ -683,7 +683,7 @@ globextend(path, pglob)
if (pglob->gl_pathv == NULL && pglob->gl_offs > 0) {
/* first time around -- clear initial gl_offs items */
pathv += pglob->gl_offs;
- for (i = pglob->gl_offs; --i >= 0; )
+ for (i = pglob->gl_offs; --i >= 0;)
*--pathv = NULL;
}
pglob->gl_pathv = pathv;