diff options
author | Max Kellermann <max@duempel.org> | 2013-10-02 08:13:28 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-10-02 08:56:27 +0200 |
commit | 0214baad5affb78bf64c7774ba48693a3c6d15ee (patch) | |
tree | 79c8c8c13a443f60007db87f65bcbe44941586f3 /src/PlaylistControl.cxx | |
parent | c2d3ed2acc9fdb9b0900b70d427d91b22684a8ec (diff) | |
download | mpd-0214baad5affb78bf64c7774ba48693a3c6d15ee.tar.gz mpd-0214baad5affb78bf64c7774ba48693a3c6d15ee.tar.xz mpd-0214baad5affb78bf64c7774ba48693a3c6d15ee.zip |
Playlist*: use nullptr instead of NULL
Diffstat (limited to '')
-rw-r--r-- | src/PlaylistControl.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/PlaylistControl.cxx b/src/PlaylistControl.cxx index 8fb634b77..f0cf05121 100644 --- a/src/PlaylistControl.cxx +++ b/src/PlaylistControl.cxx @@ -226,7 +226,7 @@ playlist::SeekSongPosition(player_control &pc, unsigned song, float seek_time) } queued = -1; - UpdateQueuedSong(pc, NULL); + UpdateQueuedSong(pc, nullptr); return PLAYLIST_RESULT_SUCCESS; } |