diff options
author | Thomas Jansen <mithi@mithi.net> | 2008-12-02 02:42:19 +0100 |
---|---|---|
committer | Thomas Jansen <mithi@mithi.net> | 2008-12-02 02:42:19 +0100 |
commit | e6ae40982e89053a4326058e726422ef7602bd1a (patch) | |
tree | 537da7d160e6946803479e383f67b36388c7e53b /src/log.c | |
parent | c252143d5147e541a42bf7bb2530e12c62962576 (diff) | |
download | mpd-e6ae40982e89053a4326058e726422ef7602bd1a.tar.gz mpd-e6ae40982e89053a4326058e726422ef7602bd1a.tar.xz mpd-e6ae40982e89053a4326058e726422ef7602bd1a.zip |
replaced mpd_noreturn by G_GNUC_NORETURN
We want to remove gcc.h eventually. This takes care of all the
G_GNUC_NORETURN macros.
Diffstat (limited to 'src/log.c')
-rw-r--r-- | src/log.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -182,7 +182,7 @@ log_func(DEBUG, G_LOG_LEVEL_DEBUG) #undef log_func -mpd_printf mpd_noreturn void FATAL(const char *fmt, ...) +mpd_printf G_GNUC_NORETURN void FATAL(const char *fmt, ...) { va_list args; va_start(args, fmt); |