summaryrefslogtreecommitdiff
path: root/libs/ardour/session_command.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2013-01-09 15:09:13 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2013-01-09 15:09:13 +0000
commitf402a63a0effb704ac25d0a2165c2f469755202b (patch)
tree71f78dbec46f69deec20fe5b75b1314fb0b6bc71 /libs/ardour/session_command.cc
parent6ed562f182edf02434685e9af62921724a38370f (diff)
fix bad fix to error string
git-svn-id: svn://localhost/ardour2/branches/3.0@13815 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/session_command.cc')
-rw-r--r--libs/ardour/session_command.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/ardour/session_command.cc b/libs/ardour/session_command.cc
index 2fdcfb17a2..f2909ea10d 100644
--- a/libs/ardour/session_command.cc
+++ b/libs/ardour/session_command.cc
@@ -84,8 +84,8 @@ Session::memento_command_factory(XMLNode *n)
}
if (!child) {
- error << _("Tried to reconstitute a MementoCommand with no contents, failing. id=%1") << id.to_s() << endmsg;
- return 0;
+ error << string_compose (_("Tried to reconstitute a MementoCommand with no contents, failing. id=%1"), id.to_s()) << endmsg;
+ return 0;
}
/* create command */