Add a missing % character

This commit is contained in:
John Wiegley 2013-05-19 02:41:46 -05:00
parent 62c2ab968c
commit c70e959214

View file

@ -106,7 +106,7 @@ public:
virtual string description() {
if (pos) {
std::ostringstream buf;
buf << _f("posting at line %1") << pos->beg_line;
buf << _f("posting at line %1%") % pos->beg_line;
return buf.str();
} else {
return string(_("generated posting"));