From 2cadaafc4fbdaec25e9e6c08d7559b86416cc23d Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Thu, 6 Mar 2025 17:10:21 -0700 Subject: [PATCH] NO-OP: follow style guide and use space in function call --- gtk2_ardour/midi_view.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/midi_view.cc b/gtk2_ardour/midi_view.cc index 4610758ef1..002622bdda 100644 --- a/gtk2_ardour/midi_view.cc +++ b/gtk2_ardour/midi_view.cc @@ -4873,7 +4873,7 @@ MidiView::get_channel_for_add (MidiModel::TimeType time) const /* second, use the nearest note in the region-view (consistent with get_velocity_for_add behavior) */ if (!_model->notes().empty()) { - MidiModel::Notes::const_iterator m = _model->note_lower_bound(time); + MidiModel::Notes::const_iterator m = _model->note_lower_bound (time); if (m == _model->notes().begin()) { // Before the start, use the channel of the first note return (*m)->channel();