aboutsummaryrefslogtreecommitdiffstats
path: root/src/decoder_thread.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/decoder_thread.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/decoder_thread.c b/src/decoder_thread.c
index c04d0b849..dee16218a 100644
--- a/src/decoder_thread.c
+++ b/src/decoder_thread.c
@@ -29,7 +29,6 @@
#include "tag.h"
#include "mapper.h"
#include "path.h"
-#include "log.h"
#include "uri.h"
#include <glib.h>
@@ -269,5 +268,5 @@ void decoder_thread_start(void)
dc.thread = g_thread_create(decoder_task, NULL, true, &e);
if (dc.thread == NULL)
- FATAL("Failed to spawn decoder task: %s\n", e->message);
+ g_error("Failed to spawn decoder task: %s", e->message);
}