summaryrefslogtreecommitdiff
path: root/libs/ardour/tempo.cc
diff options
context:
space:
mode:
authornick_m <mainsbridge@gmail.com>2016-11-09 00:49:31 +1100
committernick_m <mainsbridge@gmail.com>2016-11-11 03:37:08 +1100
commit35ec9b33cf9a622f0692cca6cde856ea1a4a3962 (patch)
tree8487fa50e781895d435647ecd990c13724796db8 /libs/ardour/tempo.cc
parentb025f8e42a4eacd5429d0808f45c4d84cade7cb8 (diff)
clarify bbt_at_frame() warning.
Diffstat (limited to 'libs/ardour/tempo.cc')
-rw-r--r--libs/ardour/tempo.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/tempo.cc b/libs/ardour/tempo.cc
index 8ae25fe24d..0565f66f7c 100644
--- a/libs/ardour/tempo.cc
+++ b/libs/ardour/tempo.cc
@@ -2152,7 +2152,7 @@ TempoMap::bbt_at_frame (framepos_t frame)
bbt.bars = 1;
bbt.beats = 1;
bbt.ticks = 0;
- warning << string_compose (_("tempo map asked for BBT time at frame %1\n"), frame) << endmsg;
+ warning << string_compose (_("tempo map was asked for BBT time at frame %1\n"), frame) << endmsg;
return bbt;
}
Glib::Threads::RWLock::ReaderLock lm (lock);