diff options
author | Max Kellermann <max@duempel.org> | 2013-09-05 18:20:52 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-09-05 18:26:46 +0200 |
commit | 7a4c9f5f4c38b568a51ec13988f5fcfbbe278afa (patch) | |
tree | 03c6b14d6d54f4657aa5939982aec7f942e47c46 /src/DecoderList.cxx | |
parent | 3330aa6f6a7fcd903f74cb8342f315ad35b54ead (diff) | |
download | mpd-7a4c9f5f4c38b568a51ec13988f5fcfbbe278afa.tar.gz mpd-7a4c9f5f4c38b568a51ec13988f5fcfbbe278afa.tar.xz mpd-7a4c9f5f4c38b568a51ec13988f5fcfbbe278afa.zip |
mpd_error.h: remove obsolete header
Migrate the remaining callers to FatalError().
Diffstat (limited to '')
-rw-r--r-- | src/DecoderList.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
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 <glib.h> @@ -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; |