diff options
Diffstat (limited to 'src/FilterRegistry.cxx')
-rw-r--r-- | src/FilterRegistry.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/FilterRegistry.cxx b/src/FilterRegistry.cxx index c8aff8298..b3b08505e 100644 --- a/src/FilterRegistry.cxx +++ b/src/FilterRegistry.cxx @@ -30,15 +30,15 @@ const struct filter_plugin *const filter_plugins[] = { &normalize_filter_plugin, &volume_filter_plugin, &replay_gain_filter_plugin, - NULL, + nullptr, }; const struct filter_plugin * filter_plugin_by_name(const char *name) { - for (unsigned i = 0; filter_plugins[i] != NULL; ++i) + for (unsigned i = 0; filter_plugins[i] != nullptr; ++i) if (strcmp(filter_plugins[i]->name, name) == 0) return filter_plugins[i]; - return NULL; + return nullptr; } |