aboutsummaryrefslogtreecommitdiff
path: root/src/mpd_error.h
diff options
context:
space:
mode:
authorDenis Krjuchkov <alcohold@gmail.com>2010-09-26 13:40:30 +0600
committerMax Kellermann <max@duempel.org>2010-09-28 18:12:14 +0200
commit2b78358af5b883c7fefc2b22b2693c5e4af6e1d3 (patch)
treeefe252d494810c02e046855d8858fdc6e0120c38 /src/mpd_error.h
parenta59ab3e2ee4407a1c912cdf0d2e09f8670cc3ffe (diff)
mpd_error: more correct MPD_ERROR implementation
Original implementation does not handle if (...) MPD_ERROR("die"); else ... case well. This change fixes handling of such cases.
Diffstat (limited to 'src/mpd_error.h')
-rw-r--r--src/mpd_error.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mpd_error.h b/src/mpd_error.h
index 95e12057..47618d03 100644
--- a/src/mpd_error.h
+++ b/src/mpd_error.h
@@ -28,9 +28,9 @@
* proper error handling. */
#define MPD_ERROR(...) \
- { \
+ do { \
g_critical(__VA_ARGS__); \
exit(EXIT_FAILURE); \
- }
+ } while(0)
#endif