*: use nullptr instead of NULL

This commit is contained in:
Max Kellermann
2020-02-01 13:49:19 +01:00
parent 398281cd76
commit 540919f256
17 changed files with 32 additions and 32 deletions

View File

@@ -53,7 +53,7 @@ LoadFilter(const ConfigData &config, const char *name)
{
const auto *param = config.FindBlock(ConfigBlockOption::AUDIO_FILTER,
"name", name);
if (param == NULL)
if (param == nullptr)
throw FormatRuntimeError("No such configured filter: %s",
name);