From 20597b3632d3b6e25ba532716106f90d5b64d0e8 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Mon, 28 Oct 2013 23:58:17 +0100 Subject: *: use nullptr instead of NULL --- src/DatabaseQueue.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/DatabaseQueue.cxx') diff --git a/src/DatabaseQueue.cxx b/src/DatabaseQueue.cxx index e277c0fca..fb933e0d4 100644 --- a/src/DatabaseQueue.cxx +++ b/src/DatabaseQueue.cxx @@ -31,7 +31,7 @@ static bool AddToQueue(Partition &partition, Song &song, Error &error) { PlaylistResult result = - partition.playlist.AppendSong(partition.pc, &song, NULL); + partition.playlist.AppendSong(partition.pc, &song, nullptr); if (result != PlaylistResult::SUCCESS) { error.Set(playlist_domain, int(result), "Playlist error"); return false; -- cgit v1.2.3