diff options
author | wcohen <wcohen> | 2008-02-29 14:36:28 +0000 |
---|---|---|
committer | wcohen <wcohen> | 2008-02-29 14:36:28 +0000 |
commit | 9ceec314dfc92c5d69442966dd386aaefee90bea (patch) | |
tree | 5a3a3bc2147cbb4740ea78888220b8c94cc6fbd4 /main.cxx | |
parent | 49abf162fa91397b0c65d41f5c9af31ace4e6290 (diff) | |
download | systemtap-steved-9ceec314dfc92c5d69442966dd386aaefee90bea.tar.gz systemtap-steved-9ceec314dfc92c5d69442966dd386aaefee90bea.tar.xz systemtap-steved-9ceec314dfc92c5d69442966dd386aaefee90bea.zip |
2008-02-29 Will Cohen <wcohen@redhat.com>
* main.cxx (handle_interrupts): Make compatible with GCC 4.3.
Diffstat (limited to 'main.cxx')
-rw-r--r-- | main.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); } } |