diff options
author | John Wiegley <johnw@newartisans.com> | 2009-02-07 00:08:08 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-02-07 00:08:08 -0400 |
commit | 17c7037da9ee345c02ad8db89d976fb6c122a7d7 (patch) | |
tree | 8f5eed2e446e92f52f03515ca8e8653c78b62eed /src/op.cc | |
parent | 47725095da5d8ee4596cf5602f3f7f93ae05d813 (diff) | |
download | fork-ledger-17c7037da9ee345c02ad8db89d976fb6c122a7d7.tar.gz fork-ledger-17c7037da9ee345c02ad8db89d976fb6c122a7d7.tar.bz2 fork-ledger-17c7037da9ee345c02ad8db89d976fb6c122a7d7.zip |
Correction to debug output.
Diffstat (limited to 'src/op.cc')
-rw-r--r-- | src/op.cc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -236,7 +236,7 @@ bool expr_t::op_t::print(std::ostream& out, const context_t& context) const switch (kind) { case VALUE: - as_value().print(out, context.relaxed); + as_value().dump(out, context.relaxed); break; case IDENT: |