diff options
author | Denis Vlasenko | 2006-10-27 09:05:02 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-10-27 09:05:02 +0000 |
commit | dca0b707c0f0998670f8e69600cc30d94e9b217b (patch) | |
tree | bf0291a625fee415b6500007b0ec90880104f962 /coreutils/df.c | |
parent | 621204bbf6750f1ba3977b43bb35375ddda6b5ae (diff) | |
download | busybox-dca0b707c0f0998670f8e69600cc30d94e9b217b.zip busybox-dca0b707c0f0998670f8e69600cc30d94e9b217b.tar.gz |
reshuffle libbb.h contents so that order of decls makes sense
Found bad typo in largefile support :)
Diffstat (limited to 'coreutils/df.c')
-rw-r--r-- | coreutils/df.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/coreutils/df.c b/coreutils/df.c index c569dae..6ae3eed 100644 --- a/coreutils/df.c +++ b/coreutils/df.c @@ -29,7 +29,7 @@ #ifndef CONFIG_FEATURE_HUMAN_READABLE static long kscale(long b, long bs) { - return ( b * (long long) bs + KILOBYTE/2 ) / KILOBYTE; + return ( b * (long long) bs + 1024/2 ) / 1024; } #endif @@ -38,7 +38,7 @@ int df_main(int argc, char **argv) long blocks_used; long blocks_percent_used; #ifdef CONFIG_FEATURE_HUMAN_READABLE - unsigned long df_disp_hr = KILOBYTE; + unsigned long df_disp_hr = 1024; #endif int status = EXIT_SUCCESS; unsigned opt; @@ -56,7 +56,7 @@ int df_main(int argc, char **argv) disp_units_hdr = " Size"; } if (opt & 2) { - df_disp_hr = MEGABYTE; + df_disp_hr = 1024*1024; disp_units_hdr = "1M-blocks"; } #else |