diff options
author | Peter A. G. Crosthwaite <peter.crosthwaite@petalogix.com> | 2012-08-13 11:04:07 +0100 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2012-08-13 11:04:07 +0100 |
commit | b1c265424abfa5a1b2589e606b4e4dafbb5108f0 (patch) | |
tree | 981b387f5a067d2d44cb51ed16138a342a4e08c2 /hw | |
parent | 4e8f1be21287a101996c56fc2e22737692e2868d (diff) | |
download | qemu-b1c265424abfa5a1b2589e606b4e4dafbb5108f0.tar.gz qemu-b1c265424abfa5a1b2589e606b4e4dafbb5108f0.tar.bz2 qemu-b1c265424abfa5a1b2589e606b4e4dafbb5108f0.zip |
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 <peter.crosthwaite@petalogix.com>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/ssd0323.c | 4 |
1 files changed, 3 insertions, 1 deletions
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, ...) \ |