fix bad fix to error string

git-svn-id: svn://localhost/ardour2/branches/3.0@13815 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2013-01-09 15:09:13 +00:00
parent 6ed562f182
commit f402a63a0e

View File

@ -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 */