diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | main.cxx | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2008-02-29 Will Cohen <wcohen@redhat.com> + + * main.cxx (handle_interrupts): Make compatible with GCC 4.3. + 2008-02-28 Frank Ch. Eigler <fche@elastic.org> PR5045 @@ -197,7 +197,7 @@ void handle_interrupt (int /* sig */) { char msg[] = "Too many interrupts received, exiting.\n"; int rc = write (2, msg, sizeof(msg)-1); - if (rc) /* Do nothing; we don't care if our last gasp went out. */ ; + if (rc) {/* Do nothing; we don't care if our last gasp went out. */ ;} _exit (1); } } |