From 7a4c9f5f4c38b568a51ec13988f5fcfbbe278afa Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Thu, 5 Sep 2013 18:20:52 +0200 Subject: mpd_error.h: remove obsolete header Migrate the remaining callers to FatalError(). --- src/DecoderList.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/DecoderList.cxx') diff --git a/src/DecoderList.cxx b/src/DecoderList.cxx index 092c3dca9..fd80514dd 100644 --- a/src/DecoderList.cxx +++ b/src/DecoderList.cxx @@ -22,7 +22,6 @@ #include "DecoderPlugin.hxx" #include "ConfigGlobal.hxx" #include "ConfigData.hxx" -#include "mpd_error.h" #include "decoder/AudiofileDecoderPlugin.hxx" #include "decoder/PcmDecoderPlugin.hxx" #include "decoder/DsdiffDecoderPlugin.hxx" @@ -43,6 +42,7 @@ #include "decoder/ModplugDecoderPlugin.hxx" #include "decoder/MpcdecDecoderPlugin.hxx" #include "decoder/FluidsynthDecoderPlugin.hxx" +#include "system/FatalError.hxx" #include @@ -204,8 +204,8 @@ decoder_plugin_config(const char *plugin_name) while ((param = config_get_next_param(CONF_DECODER, param)) != NULL) { const char *name = param->GetBlockValue("plugin"); if (name == NULL) - MPD_ERROR("decoder configuration without 'plugin' name in line %d", - param->line); + FormatFatalError("decoder configuration without 'plugin' name in line %d", + param->line); if (strcmp(name, plugin_name) == 0) return param; -- cgit v1.2.3