diff options
author | John Wiegley <johnw@newartisans.com> | 2003-10-02 00:07:14 +0000 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2003-10-02 00:07:14 +0000 |
commit | 2a1055890241b1299d8b91d65038d0f4f5067fb5 (patch) | |
tree | 97616b59a3139a591458e4ac95580fa6937c39b4 /ledger.cc | |
parent | 3afa81857a688cb2eca56945dc5c40b9825b2e69 (diff) | |
download | fork-ledger-2a1055890241b1299d8b91d65038d0f4f5067fb5.tar.gz fork-ledger-2a1055890241b1299d8b91d65038d0f4f5067fb5.tar.bz2 fork-ledger-2a1055890241b1299d8b91d65038d0f4f5067fb5.zip |
*** empty log message ***
Diffstat (limited to 'ledger.cc')
-rw-r--r-- | ledger.cc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -136,7 +136,7 @@ void totals::print(std::ostream& out, int width) const out << std::endl; out.width(width); - out << std::right << *((*i).second); + out << std::right << (*i).second->as_str(); } } |