From 49cfd5a52c65b5d2cdf163c7f190eff6cefcecb5 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Tue, 5 Nov 2002 20:33:35 +0000 Subject: (bsd_sum_file, sysv_sym_file): Use primitives from inttostr.h, not human.h, to print large numbers simply. --- src/sum.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/sum.c b/src/sum.c index d5e667a0c..13d728842 100644 --- a/src/sum.c +++ b/src/sum.c @@ -133,7 +133,7 @@ bsd_sum_file (const char *file, int print_name) } printf ("%05d %5s", checksum, - human_readable_inexact (total_bytes, hbuf, 1, 1024, human_ceiling)); + human_readable (total_bytes, hbuf, human_ceiling, 1, 1024)); if (print_name > 1) printf (" %s", file); putchar ('\n'); @@ -207,7 +207,7 @@ sysv_sum_file (const char *file, int print_name) checksum = (r & 0xffff) + (r >> 16); printf ("%d %s", checksum, - human_readable_inexact (total_bytes, hbuf, 1, 512, human_ceiling)); + human_readable (total_bytes, hbuf, human_ceiling, 1, 512)); if (print_name) printf (" %s", file); putchar ('\n'); -- cgit v1.2.3-70-g09d2