diff options
-rw-r--r-- | src/value.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/value.cc b/src/value.cc index e5ced56e..64193db6 100644 --- a/src/value.cc +++ b/src/value.cc @@ -1726,7 +1726,7 @@ void value_t::print(std::ostream& out, out << 0; } else { std::ostringstream buf; - as_amount().print(buf, flags & AMOUNT_PRINT_NO_COMPUTED_ANNOTATIONS); + as_amount().print(buf, flags); justify(out, buf.str(), first_width, flags & AMOUNT_PRINT_RIGHT_JUSTIFY, flags & AMOUNT_PRINT_COLORIZE && as_amount().sign() < 0); } |