From 5b8e213ff903496eeee904394ee464e6d2d36b63 Mon Sep 17 00:00:00 2001 From: nick_m Date: Mon, 21 Nov 2016 07:08:04 +1100 Subject: [PATCH] fix typo in tempo.cc --- libs/ardour/tempo.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); } }