From db35e5c8fccf965c7383bebcfca8f7c3ad681d3b Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Sun, 19 May 2013 02:06:45 -0500 Subject: Resolve new compiler warnings from Clang --- src/print.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/print.cc') 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 && -- cgit v1.2.3