diff options
Diffstat (limited to 'src/PlaylistSave.cxx')
-rw-r--r-- | src/PlaylistSave.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/PlaylistSave.cxx b/src/PlaylistSave.cxx index efcf03402..1a3a96a23 100644 --- a/src/PlaylistSave.cxx +++ b/src/PlaylistSave.cxx @@ -78,7 +78,7 @@ spl_save_queue(const char *name_utf8, const struct queue *queue) FILE *file = FOpen(path_fs, FOpenMode::WriteText); - if (file == NULL) + if (file == nullptr) return PLAYLIST_RESULT_ERRNO; for (unsigned i = 0; i < queue->GetLength(); i++) |