diff options
author | ivan <ivan> | 2009-03-15 10:30:26 +0000 |
---|---|---|
committer | ivan <ivan> | 2009-03-15 10:30:26 +0000 |
commit | dc24b4b7e2e41dbb3039e9ce367b018fef299ade (patch) | |
tree | 7b0e400a57153c68ba05d96dbc5a73dfa4346366 /FS | |
parent | 5cf0508a1ec3dafaeef8a4bd206ef5e5b51235c8 (diff) |
we're not a disk drive manufacturer, don't use halfass base-10 megs/gigs
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/UI/bytecount.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/FS/FS/UI/bytecount.pm b/FS/FS/UI/bytecount.pm index 0891e6d68..0ddc7545c 100644 --- a/FS/FS/UI/bytecount.pm +++ b/FS/FS/UI/bytecount.pm @@ -32,9 +32,9 @@ sub bytecount_unexact { return("$bc bytes") if ($bc < 1000); return(sprintf("%.2f Kbytes", $bc/1024)) - if ($bc < 1000000); + if ($bc < 1048576); return(sprintf("%.2f Mbytes", $bc/1048576)) - if ($bc < 1000000000); + if ($bc < 1073741824); return(sprintf("%.2f Gbytes", $bc/1073741824)); } |