OSDN Git Service

* sigproc.cc (wait_sig): Add braces to avoid confusion.
authorcgf <cgf>
Fri, 27 Oct 2000 15:38:32 +0000 (15:38 +0000)
committercgf <cgf>
Fri, 27 Oct 2000 15:38:32 +0000 (15:38 +0000)
winsup/cygwin/ChangeLog
winsup/cygwin/sigproc.cc
winsup/cygwin/tty.h

index a33842f..7b1ba65 100644 (file)
@@ -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.
index 1d235b6..c59b67e 100644 (file)
@@ -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)
        {
index f4fa671..bdd6eae 100644 (file)
@@ -1,4 +1,4 @@
-/* tty.h: shared info for cygwin
+/* tty.h: shared tty info for cygwin
 
    Copyright 2000 Cygnus Solutions.