summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authornick_m <mainsbridge@gmail.com>2016-11-21 07:08:04 +1100
committernick_m <mainsbridge@gmail.com>2016-11-21 07:08:04 +1100
commit5b8e213ff903496eeee904394ee464e6d2d36b63 (patch)
treebe4c7d66895bd5105261caf0d5248208465fca8c /libs
parente0c06f39e197fae146b15361327de54cb1a14443 (diff)
fix typo in tempo.cc
Diffstat (limited to 'libs')
-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 d800eb6f60..0f3766b03c 100644
--- a/libs/ardour/tempo.cc
+++ b/libs/ardour/tempo.cc
@@ -131,7 +131,7 @@ TempoSection::TempoSection (const XMLNode& node, framecnt_t sample_rate)
/* XX replace old beats-per-minute name with note-types-per-minute */
if ((prop = node.property ("beats-per-minute")) != 0) {
if (sscanf (prop->value().c_str(), "%lf", &_note_types_per_minute) != 1 || _note_types_per_minute < 0.0) {
- error << _("TempoSection XML node has an illegal \"beats-per-minutee\" value") << endmsg;
+ error << _("TempoSection XML node has an illegal \"beats-per-minute\" value") << endmsg;
throw failed_constructor();
}
}