From ebf26ddc9b0129f5b8150d67ccc10933e749ecf6 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Tue, 7 Apr 2020 15:59:18 +0200 Subject: [PATCH] NO-OP: whitespace --- libs/ardour/disk_reader.cc | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/libs/ardour/disk_reader.cc b/libs/ardour/disk_reader.cc index 38ce68cb66..61fc44b920 100644 --- a/libs/ardour/disk_reader.cc +++ b/libs/ardour/disk_reader.cc @@ -235,23 +235,22 @@ DiskReader::playlist_modified () int DiskReader::use_playlist (DataType dt, boost::shared_ptr playlist) { - bool prior_playlist = false; + bool prior_playlist = false; - if (_playlists[dt]) { - prior_playlist = true; - } + if (_playlists[dt]) { + prior_playlist = true; + } - if (DiskIOProcessor::use_playlist (dt, playlist)) { + if (DiskIOProcessor::use_playlist (dt, playlist)) { return -1; } /* don't do this if we've already asked for it *or* if we are setting up - the diskstream for the very first time - the input changed handling will - take care of the buffer refill. - */ + * the diskstream for the very first time - the input changed handling will + * take care of the buffer refill. */ - if (!(g_atomic_int_get (&_pending_overwrite) & PlaylistChanged) || prior_playlist) { - _session.request_overwrite_buffer (_track, PlaylistChanged); + if (!(g_atomic_int_get (&_pending_overwrite) & PlaylistChanged) || prior_playlist) { + _session.request_overwrite_buffer (_track, PlaylistChanged); } return 0;