aboutsummaryrefslogtreecommitdiff
path: root/util-linux/more.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-04-05 23:26:44 +0000
committerEric Andersen <andersen@codepoet.org>2001-04-05 23:26:44 +0000
commit250a22176815303f9af072a11278108f7767282b (patch)
treedeb2971095d68588538830f0f0044ddf1eb5ae43 /util-linux/more.c
parent83f173b61ec4df708d6ead45540ede3a28c2e630 (diff)
downloadbusybox-250a22176815303f9af072a11278108f7767282b.tar.gz
more FILE_OFFSET_BITS == 64 adjustments.
Diffstat (limited to 'util-linux/more.c')
-rw-r--r--util-linux/more.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/util-linux/more.c b/util-linux/more.c
index b89143e4d..1d918cf5c 100644
--- a/util-linux/more.c
+++ b/util-linux/more.c
@@ -124,13 +124,13 @@ extern int more_main(int argc, char **argv)
if (file != stdin) {
#if _FILE_OFFSET_BITS == 64
len += printf("(%d%% of %lld bytes)",
+ (int) (100 * ((double) ftell(file) /
+ (double) st.st_size)), (long long)st.st_size);
#else
len += printf("(%d%% of %ld bytes)",
+ (int) (100 * ((double) ftell(file) /
+ (double) st.st_size)), (long)st.st_size);
#endif
- (int) (100 *
- ((double) ftell(file) /
- (double) st.st_size)),
- st.st_size);
}
len += printf("%s",
#ifdef BB_FEATURE_USE_TERMIOS