summaryrefslogtreecommitdiff
path: root/gtk2_ardour/export_channel_selector.cc
diff options
context:
space:
mode:
authorColin Fletcher <colin.m.fletcher@googlemail.com>2015-06-06 15:14:20 +0100
committerColin Fletcher <colin.m.fletcher@googlemail.com>2015-06-08 14:42:24 +0100
commitecd37a5c2f35c204ee6b766e85021e2996ff8dc7 (patch)
treee233722a29a19853d659dface0f2fa535e425ba1 /gtk2_ardour/export_channel_selector.cc
parent54caccf1598f7d4cc277e0af13dfeb9afc7ed7ce (diff)
Fix tiny typo in PortExportChannelSelector error text
Diffstat (limited to 'gtk2_ardour/export_channel_selector.cc')
-rw-r--r--gtk2_ardour/export_channel_selector.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/export_channel_selector.cc b/gtk2_ardour/export_channel_selector.cc
index fcebdb003a..023a11cab2 100644
--- a/gtk2_ardour/export_channel_selector.cc
+++ b/gtk2_ardour/export_channel_selector.cc
@@ -154,7 +154,7 @@ PortExportChannelSelector::RouteCols::Channel &
PortExportChannelSelector::RouteCols::get_channel (uint32_t channel)
{
if (channel > n_channels) {
- std::cout << "Invalid channel cout for get_channel!" << std::endl;
+ std::cout << "Invalid channel count for get_channel!" << std::endl;
}
std::list<Channel>::iterator it = channels.begin();