diff options
| author | Anthony Liguori <aliguori@us.ibm.com> | 2011-09-22 10:29:42 -0500 |
|---|---|---|
| committer | Anthony Liguori <aliguori@us.ibm.com> | 2011-09-22 10:29:42 -0500 |
| commit | 9ba2a054db309646946d7e01f87693b09a6bdb11 (patch) | |
| tree | e71dfdc6056c7515206c52dbbaecfb933a813de8 /qemu-thread-win32.c | |
| parent | bdd2672109caa5cbdd955ef5c7a05b49a6b44fbe (diff) | |
| parent | 7b0a03a1eab52ed2f59c8e4cb2210ee74433a820 (diff) | |
| download | focaccia-qemu-9ba2a054db309646946d7e01f87693b09a6bdb11.tar.gz focaccia-qemu-9ba2a054db309646946d7e01f87693b09a6bdb11.zip | |
Merge remote-tracking branch 'stefanha/trivial-patches' into staging
Diffstat (limited to 'qemu-thread-win32.c')
| -rw-r--r-- | qemu-thread-win32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qemu-thread-win32.c b/qemu-thread-win32.c index a27332e669..db8e744729 100644 --- a/qemu-thread-win32.c +++ b/qemu-thread-win32.c @@ -24,7 +24,7 @@ static void error_exit(int err, const char *msg) NULL, err, 0, (LPTSTR)&pstr, 2, NULL); fprintf(stderr, "qemu: %s: %s\n", msg, pstr); LocalFree(pstr); - exit(1); + abort(); } void qemu_mutex_init(QemuMutex *mutex) |