From a899c210b9de405a232f0cd102ca9409ef89518b Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sun, 15 Mar 2009 18:23:00 +0100 Subject: log: removed DEBUG() and FATAL() Use GLib the logging functions g_debug(), g_error() instead. --- src/decoder_thread.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/decoder_thread.c') 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 @@ -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); } -- cgit v1.2.3