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/PlaylistRegistry.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/PlaylistRegistry.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/PlaylistRegistry.cxx b/src/PlaylistRegistry.cxx index 88628e455..d2692e06f 100644 --- a/src/PlaylistRegistry.cxx +++ b/src/PlaylistRegistry.cxx @@ -37,7 +37,7 @@ #include "util/Error.hxx" #include "ConfigGlobal.hxx" #include "ConfigData.hxx" -#include "mpd_error.h" +#include "system/FatalError.hxx" #include <assert.h> #include <string.h> @@ -87,8 +87,8 @@ playlist_plugin_config(const char *plugin_name) while ((param = config_get_next_param(CONF_PLAYLIST_PLUGIN, param)) != NULL) { const char *name = param->GetBlockValue("name"); if (name == NULL) - MPD_ERROR("playlist configuration without 'plugin' name in line %d", - param->line); + FormatFatalError("playlist configuration without 'plugin' name in line %d", + param->line); if (strcmp(name, plugin_name) == 0) return param; |