diff options
author | Max Kellermann <max@duempel.org> | 2013-08-03 21:34:17 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-08-03 21:34:17 +0200 |
commit | 67f591a9ce60651da41afc499bd9a22e25314e35 (patch) | |
tree | 0eeeba50880b52317f326c73587a7cb4a5c93b32 /src/audio_format.c | |
parent | 105b431e4cd5416b44ed3fb68e5944ad59bd8221 (diff) | |
download | mpd-67f591a9ce60651da41afc499bd9a22e25314e35.tar.gz mpd-67f591a9ce60651da41afc499bd9a22e25314e35.tar.xz mpd-67f591a9ce60651da41afc499bd9a22e25314e35.zip |
gcc.h: add macro gcc_unreachable()
Diffstat (limited to '')
-rw-r--r-- | src/audio_format.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/audio_format.c b/src/audio_format.c index 45d94a853..cfe3a4cae 100644 --- a/src/audio_format.c +++ b/src/audio_format.c @@ -69,7 +69,7 @@ sample_format_to_string(enum sample_format format) /* unreachable */ assert(false); - return "?"; + gcc_unreachable(); } const char * |