summaryrefslogtreecommitdiff
path: root/src/post.h
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2013-05-19 02:41:46 -0500
committerJohn Wiegley <johnw@newartisans.com>2013-05-19 02:41:46 -0500
commitc70e959214239256d1bc947a4a940b3b3ee1ac17 (patch)
tree4e3df12003f59b46daabfea0de1f56eae73ab7de /src/post.h
parent62c2ab968c2ec412624bc0f001f7f771c358e442 (diff)
downloadfork-ledger-c70e959214239256d1bc947a4a940b3b3ee1ac17.tar.gz
fork-ledger-c70e959214239256d1bc947a4a940b3b3ee1ac17.tar.bz2
fork-ledger-c70e959214239256d1bc947a4a940b3b3ee1ac17.zip
Add a missing % character
Diffstat (limited to 'src/post.h')
-rw-r--r--src/post.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/post.h b/src/post.h
index 3206afdd..55ca08e4 100644
--- a/src/post.h
+++ b/src/post.h
@@ -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"));