aboutsummaryrefslogtreecommitdiff
path: root/coreutils/sum.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-10-05 20:29:31 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-10-05 20:29:31 +0000
commit91e80c2be7d53b116ef23072ecaa89168b8e5bfc (patch)
treec10b20b6d4c3221067b59365f51c114f6b5b0261 /coreutils/sum.c
parent226002ea74a5285bb338b17419c13f43a1ff5a47 (diff)
downloadbusybox-w32-91e80c2be7d53b116ef23072ecaa89168b8e5bfc.tar.gz
busybox-w32-91e80c2be7d53b116ef23072ecaa89168b8e5bfc.tar.bz2
busybox-w32-91e80c2be7d53b116ef23072ecaa89168b8e5bfc.zip
delete now unused check_header_gzip.c
sum: do not use uintmax needlessly
Diffstat (limited to 'coreutils/sum.c')
-rw-r--r--coreutils/sum.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/coreutils/sum.c b/coreutils/sum.c
index 4a3760bb4..a75dd321d 100644
--- a/coreutils/sum.c
+++ b/coreutils/sum.c
@@ -24,7 +24,7 @@ enum { SUM_BSD, PRINT_NAME, SUM_SYSV };
24static unsigned sum_file(const char *file, const unsigned type) 24static unsigned sum_file(const char *file, const unsigned type)
25{ 25{
26#define buf bb_common_bufsiz1 26#define buf bb_common_bufsiz1
27 uintmax_t total_bytes = 0; 27 unsigned long long total_bytes = 0;
28 int fd = 0, r; 28 int fd = 0, r;
29 29
30 /* The sum of all the input bytes, modulo (UINT_MAX + 1). */ 30 /* The sum of all the input bytes, modulo (UINT_MAX + 1). */
@@ -67,9 +67,9 @@ static unsigned sum_file(const char *file, const unsigned type)
67 if (type >= SUM_SYSV) { 67 if (type >= SUM_SYSV) {
68 r = (s & 0xffff) + ((s & 0xffffffff) >> 16); 68 r = (s & 0xffff) + ((s & 0xffffffff) >> 16);
69 s = (r & 0xffff) + (r >> 16); 69 s = (r & 0xffff) + (r >> 16);
70 printf("%d %ju %s\n", s, (total_bytes+511)/512, file); 70 printf("%d %llu %s\n", s, (total_bytes + 511) / 512, file);
71 } else 71 } else
72 printf("%05d %5ju %s\n", s, (total_bytes+1023)/1024, file); 72 printf("%05d %5llu %s\n", s, (total_bytes + 1023) / 1024, file);
73 return 1; 73 return 1;
74#undef buf 74#undef buf
75} 75}