diff options
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(); } } |