aboutsummaryrefslogtreecommitdiff
path: root/src/decoder_thread.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/decoder_thread.c')
-rw-r--r--src/decoder_thread.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/decoder_thread.c b/src/decoder_thread.c
index a75f09d3..1a91b656 100644
--- a/src/decoder_thread.c
+++ b/src/decoder_thread.c
@@ -32,6 +32,7 @@
#include "mapper.h"
#include "path.h"
#include "uri.h"
+#include "mpd_error.h"
#include <glib.h>
@@ -479,5 +480,5 @@ decoder_thread_start(struct decoder_control *dc)
dc->thread = g_thread_create(decoder_task, dc, true, &e);
if (dc->thread == NULL)
- g_error("Failed to spawn decoder task: %s", e->message);
+ MPD_ERROR("Failed to spawn decoder task: %s", e->message);
}