From aebe5892612879d14b1e4c87abfdcb6638eefc17 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Mon, 2 Aug 2004 22:58:22 +0000 Subject: unsigned -> unsigned int --- lib/human.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/human.c') 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 -- cgit v1.2.3-54-g00ecf