From 59f8144c50765189594d5932fc25869f9ea6e265 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sat, 19 Oct 2013 18:19:03 +0200 Subject: *: use nullptr instead of NULL --- src/EncoderList.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/EncoderList.cxx') diff --git a/src/EncoderList.cxx b/src/EncoderList.cxx index 2305548b9..7760a9582 100644 --- a/src/EncoderList.cxx +++ b/src/EncoderList.cxx @@ -50,7 +50,7 @@ const EncoderPlugin *const encoder_plugins[] = { #ifdef ENABLE_FLAC_ENCODER &flac_encoder_plugin, #endif - NULL + nullptr }; const EncoderPlugin * @@ -60,5 +60,5 @@ encoder_plugin_get(const char *name) if (strcmp(plugin->name, name) == 0) return plugin; - return NULL; + return nullptr; } -- cgit v1.2.3