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>2000-10-27 19:38:32 +0400
committerChristopher Faylor <me@cgf.cx>2000-10-27 19:38:32 +0400
commit018a91fa2eaca3d1d9a3bf0f1a604bea2523ceee (patch)
treef6313d5349110d5a2ff018df7a36ec23235730dc /winsup/cygwin
parentafd5033d83e5871f96c15cd72d790692f643c4bd (diff)
* sigproc.cc (wait_sig): Add braces to avoid confusion.
Diffstat (limited to 'winsup/cygwin')
-rw-r--r--winsup/cygwin/ChangeLog4
-rw-r--r--winsup/cygwin/sigproc.cc10
-rw-r--r--winsup/cygwin/tty.h2
3 files changed, 11 insertions, 5 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index a33842f56..7b1ba6551 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,3 +1,7 @@
+Fri Oct 27 11:37:20 2000 Christopher Faylor <cgf@cygnus.com>
+
+ * sigproc.cc (wait_sig): Add braces to avoid confusion.
+
Fri Oct 27 11:48:00 2000 Corinna Vinschen <corinna@vinschen.de>
* fhandler_socket.cc: New file.
diff --git a/winsup/cygwin/sigproc.cc b/winsup/cygwin/sigproc.cc
index 1d235b635..c59b67ed1 100644
--- a/winsup/cygwin/sigproc.cc
+++ b/winsup/cygwin/sigproc.cc
@@ -1121,10 +1121,12 @@ wait_sig (VOID *)
* this thread should terminate.
*/
if (rc == WAIT_TIMEOUT)
- if (!sig_loop_wait)
- break; // Exiting
- else
- continue;
+ {
+ if (!sig_loop_wait)
+ break; // Exiting
+ else
+ continue;
+ }
if (rc == WAIT_FAILED)
{
diff --git a/winsup/cygwin/tty.h b/winsup/cygwin/tty.h
index f4fa67102..bdd6eaedf 100644
--- a/winsup/cygwin/tty.h
+++ b/winsup/cygwin/tty.h
@@ -1,4 +1,4 @@
-/* tty.h: shared info for cygwin
+/* tty.h: shared tty info for cygwin
Copyright 2000 Cygnus Solutions.