diff options
author | Max Kellermann <max@duempel.org> | 2013-08-07 09:35:30 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-08-07 10:08:36 +0200 |
commit | a27d105dcd1376c1df4ff16e388dfcfa3b355cc6 (patch) | |
tree | 6903bc549cc57250bea724bf800a3f7e6812841e /src/PlayerThread.cxx | |
parent | 67e44b0f2c76a8c4913048fe3b8fe90116fa595b (diff) | |
download | mpd-a27d105dcd1376c1df4ff16e388dfcfa3b355cc6.tar.gz mpd-a27d105dcd1376c1df4ff16e388dfcfa3b355cc6.tar.xz mpd-a27d105dcd1376c1df4ff16e388dfcfa3b355cc6.zip |
FatalError: new library to replace mpd_error.h
Diffstat (limited to '')
-rw-r--r-- | src/PlayerThread.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/PlayerThread.cxx b/src/PlayerThread.cxx index a2dcb2c46..948ad9b90 100644 --- a/src/PlayerThread.cxx +++ b/src/PlayerThread.cxx @@ -26,7 +26,7 @@ #include "MusicChunk.hxx" #include "Song.hxx" #include "Main.hxx" -#include "mpd_error.h" +#include "FatalError.hxx" #include "CrossFade.hxx" #include "PlayerControl.hxx" #include "OutputAll.hxx" @@ -1207,6 +1207,6 @@ player_create(struct player_control *pc) GError *e = NULL; pc->thread = g_thread_create(player_task, pc, true, &e); if (pc->thread == NULL) - MPD_ERROR("Failed to spawn player task: %s", e->message); + FatalError("Failed to spawn player task", e); #endif } |