diff options
Diffstat (limited to 'src/main.cc')
-rw-r--r-- | src/main.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.cc b/src/main.cc index ed7b8f2f..d3dda002 100644 --- a/src/main.cc +++ b/src/main.cc @@ -293,7 +293,7 @@ namespace ledger { out << "Value expression as input: " << *arg << std::endl; out << "Value expression as parsed: "; - expr.print(out, report); + expr.print(out); out << std::endl; out << std::endl; @@ -312,7 +312,7 @@ namespace ledger { out << "Value expression as input: " << *arg << std::endl; out << "Value expression as parsed: "; - expr.print(out, report); + expr.print(out); out << std::endl; out << std::endl; |