diff options
Diffstat (limited to 'src/OutputList.cxx')
-rw-r--r-- | src/OutputList.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/OutputList.cxx b/src/OutputList.cxx index 670131ed9..b569408dc 100644 --- a/src/OutputList.cxx +++ b/src/OutputList.cxx @@ -86,7 +86,7 @@ const struct audio_output_plugin *const audio_output_plugins[] = { #ifdef ENABLE_WINMM_OUTPUT &winmm_output_plugin, #endif - NULL + nullptr }; const struct audio_output_plugin * @@ -96,5 +96,5 @@ audio_output_plugin_get(const char *name) if (strcmp(plugin->name, name) == 0) return plugin; - return NULL; + return nullptr; } |