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/OutputFinish.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/OutputFinish.cxx') diff --git a/src/OutputFinish.cxx b/src/OutputFinish.cxx index 986103a38..db6599b53 100644 --- a/src/OutputFinish.cxx +++ b/src/OutputFinish.cxx @@ -29,10 +29,10 @@ void ao_base_finish(struct audio_output *ao) { assert(!ao->open); - assert(ao->fail_timer == NULL); + assert(ao->fail_timer == nullptr); assert(!ao->thread.IsDefined()); - if (ao->mixer != NULL) + if (ao->mixer != nullptr) mixer_free(ao->mixer); delete ao->replay_gain_filter; @@ -44,7 +44,7 @@ void audio_output_free(struct audio_output *ao) { assert(!ao->open); - assert(ao->fail_timer == NULL); + assert(ao->fail_timer == nullptr); assert(!ao->thread.IsDefined()); ao_plugin_finish(ao); -- cgit v1.2.3