aboutsummaryrefslogtreecommitdiff
path: root/src/state_file.c
diff options
context:
space:
mode:
authorThomas Jansen <mithi@mithi.net>2008-12-02 02:42:19 +0100
committerThomas Jansen <mithi@mithi.net>2008-12-02 02:42:19 +0100
commite6ae40982e89053a4326058e726422ef7602bd1a (patch)
tree537da7d160e6946803479e383f67b36388c7e53b /src/state_file.c
parentc252143d5147e541a42bf7bb2530e12c62962576 (diff)
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/state_file.c')
-rw-r--r--src/state_file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/state_file.c b/src/state_file.c
index 618d9b2f..1a3e05a7 100644
--- a/src/state_file.c
+++ b/src/state_file.c
@@ -99,7 +99,7 @@ void read_state_file(void)
while(fclose(fp) && errno == EINTR) /* nothing */;
}
-void mpd_noreturn state_file_fatal(void)
+void G_GNUC_NORETURN state_file_fatal(void)
{
FATAL("error parsing state file \"%s\"\n", sfpath);
}