diff options
| -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));  } | 
