NO-OP: remove newline in function definition

This commit is contained in:
Paul Davis 2020-05-12 10:22:19 -06:00
parent e9b9f03499
commit 80fb4fe626

View file

@ -165,8 +165,7 @@ struct Segment {
* @param cnt Number of samples to read.
*/
ARDOUR::samplecnt_t
AudioPlaylist::read (Sample *buf, Sample *mixdown_buffer, float *gain_buffer, samplepos_t start,
samplecnt_t cnt, unsigned chan_n)
AudioPlaylist::read (Sample *buf, Sample *mixdown_buffer, float *gain_buffer, samplepos_t start, samplecnt_t cnt, unsigned chan_n)
{
DEBUG_TRACE (DEBUG::AudioPlayback, string_compose ("Playlist %1 read @ %2 for %3, channel %4, regions %5 mixdown @ %6 gain @ %7\n",
name(), start, cnt, chan_n, regions.size(), mixdown_buffer, gain_buffer));