diff options
author | Max Kellermann <max@duempel.org> | 2015-01-21 21:12:54 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2015-01-21 21:18:25 +0100 |
commit | 76b7882f3324bb892a9ccc874e1bdacfd72e7b98 (patch) | |
tree | bf9679518ecb502322b7bbc17e324991f7a9de5d /src/config/ConfigFile.cxx | |
parent | bf0ab2d44c38064624778d5fb6d868cea7cb4e1a (diff) | |
download | mpd-76b7882f3324bb892a9ccc874e1bdacfd72e7b98.tar.gz mpd-76b7882f3324bb892a9ccc874e1bdacfd72e7b98.tar.xz mpd-76b7882f3324bb892a9ccc874e1bdacfd72e7b98.zip |
ConfigData: rename struct block_param to BlockParam
Diffstat (limited to '')
-rw-r--r-- | src/config/ConfigFile.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/config/ConfigFile.cxx b/src/config/ConfigFile.cxx index 75b3c7851..605adb430 100644 --- a/src/config/ConfigFile.cxx +++ b/src/config/ConfigFile.cxx @@ -67,7 +67,7 @@ config_read_name_value(struct config_param *param, char *input, unsigned line, return false; } - const struct block_param *bp = param->GetBlockParam(name); + const BlockParam *bp = param->GetBlockParam(name); if (bp != nullptr) { error.Format(config_file_domain, "\"%s\" is duplicate, first defined on line %i", |