summaryrefslogtreecommitdiff
path: root/lib/human.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/human.c')
-rw-r--r--lib/human.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/human.c b/lib/human.c
index dbf536b1e..f024c73ea 100644
--- a/lib/human.c
+++ b/lib/human.c
@@ -300,8 +300,8 @@ human_readable (uintmax_t n, char *buf, int opts,
{
do
{
- unsigned r10 = (amt % base) * 10 + tenths;
- unsigned r2 = (r10 % base) * 2 + (rounding >> 1);
+ unsigned int r10 = (amt % base) * 10 + tenths;
+ unsigned int r2 = (r10 % base) * 2 + (rounding >> 1);
amt /= base;
tenths = r10 / base;
rounding = (r2 < base