summaryrefslogtreecommitdiff
path: root/libs/ardour
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2012-02-27 16:29:05 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2012-02-27 16:29:05 +0000
commitaef76e95d645e4b08f6e3ee54683249b7f995f65 (patch)
tree4473c03f0986f3519b0c481b24b6aed3a0dfd349 /libs/ardour
parentecae912da9f6805d4939e657e3a591f79b0ae542 (diff)
fix typo in jack-out-of-ports message
git-svn-id: svn://localhost/ardour2/branches/3.0@11533 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour')
-rw-r--r--libs/ardour/audioengine.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/audioengine.cc b/libs/ardour/audioengine.cc
index 9cec374716..3aa68478aa 100644
--- a/libs/ardour/audioengine.cc
+++ b/libs/ardour/audioengine.cc
@@ -776,7 +776,7 @@ AudioEngine::port_registration_failure (const std::string& portname)
if (p) {
reason = string_compose (_("a port with the name \"%1\" already exists: check for duplicated track/bus names"), portname);
} else {
- reason = string_compose (_("No more JACK ports are available. You will need to stop %1 and restart JACK with ports if you need this many tracks."), PROGRAM_NAME);
+ reason = string_compose (_("No more JACK ports are available. You will need to stop %1 and restart JACK with more ports if you need this many tracks."), PROGRAM_NAME);
}
throw PortRegistrationFailure (string_compose (_("AudioEngine: cannot register port \"%1\": %2"), portname, reason).c_str());