From f402a63a0effb704ac25d0a2165c2f469755202b Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Wed, 9 Jan 2013 15:09:13 +0000 Subject: [PATCH] fix bad fix to error string git-svn-id: svn://localhost/ardour2/branches/3.0@13815 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/ardour/session_command.cc | 4 ++-- 1 file 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 */ -- 2.30.2