From: Peter A. G. Crosthwaite Date: Mon, 13 Aug 2012 10:04:07 +0000 (+0100) Subject: ssd0323: abort() instead of exit(1) on error. X-Git-Tag: qemu-xen-4.3.0-rc1~747^2~1 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=b1c265424abfa5a1b2589e606b4e4dafbb5108f0;p=qemu-xen.git ssd0323: abort() instead of exit(1) on error. To be more consistent with the newer ways of error signalling. That and SIGABT is easier to debug with than exit(1). Signed-off-by: Peter A. G. Crosthwaite Reviewed-by: Peter Maydell Signed-off-by: Peter Maydell --- diff --git a/hw/ssd0323.c b/hw/ssd0323.c index b0b2e94a81..b101c5112c 100644 --- a/hw/ssd0323.c +++ b/hw/ssd0323.c @@ -19,7 +19,9 @@ #define DPRINTF(fmt, ...) \ do { printf("ssd0323: " fmt , ## __VA_ARGS__); } while (0) #define BADF(fmt, ...) \ -do { fprintf(stderr, "ssd0323: error: " fmt , ## __VA_ARGS__); exit(1);} while (0) +do { \ + fprintf(stderr, "ssd0323: error: " fmt , ## __VA_ARGS__); abort(); \ +} while (0) #else #define DPRINTF(fmt, ...) do {} while(0) #define BADF(fmt, ...) \