diff options
Diffstat (limited to 'src/print.cc')
-rw-r--r-- | src/print.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/print.cc b/src/print.cc index f04f59d5..0683f2e3 100644 --- a/src/print.cc +++ b/src/print.cc @@ -210,7 +210,7 @@ namespace { string amt; if (post->amount_expr) { std::ostringstream amt_str; - justify(amt_str, post->amount_expr->text(), amount_width, true); + justify(amt_str, post->amount_expr->text(), (int)amount_width, true); amt = amt_str.str(); } else if (count == 2 && index == 2 && |