diff options
author | Neil Brown <neilb@suse.de> | 2002-05-20 13:17:18 +0200 |
---|---|---|
committer | Neil Brown <neilb@suse.de> | 2002-05-20 13:17:18 +0200 |
commit | bd526cee922b8e2b279f04ca067f729e9b0ee723 (patch) | |
tree | 24ebb244ddc6b5ecf9820d53517db288ff4b77a9 /util.c | |
parent | mdadm-1.0.0 (diff) | |
download | mdadm-bd526cee922b8e2b279f04ca067f729e9b0ee723.tar.xz mdadm-bd526cee922b8e2b279f04ca067f729e9b0ee723.zip |
mdadm-1.0.1mdadm-1.0.1
Diffstat (limited to '')
-rw-r--r-- | util.c | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -437,16 +437,16 @@ char *human_size(long long bytes) else if (bytes < 2*1024LL*1024LL*1024LL) sprintf(buf, " (%ld.%02ld MiB %ld.%02ld MB)", (long)(bytes>>20), - (long)(bytes&0xfffff)/(0x100000/100), + (long)((bytes&0xfffff)+0x100000/200)/(0x100000/100), (long)(bytes/1000/1000), - (long)((bytes%1000000)/10000) + (long)(((bytes%1000000)+5000)/10000) ); else sprintf(buf, " (%ld.%02ld GiB %ld.%02ld GB)", (long)(bytes>>30), - (long)((bytes>>10)&0xfffff)/(0x100000/100), + (long)(((bytes>>10)&0xfffff)+0x100000/200)/(0x100000/100), (long)(bytes/1000LL/1000LL/1000LL), - (long)(((bytes/1000)%1000000)/10000) + (long)((((bytes/1000)%1000000)+50000)/10000) ); return buf; } @@ -458,17 +458,17 @@ char *human_size_brief(long long bytes) if (bytes < 5000*1024) sprintf(buf, "%ld.%02ldKiB", - (long)(bytes>>10), (long)((bytes&1023)*100/1024) + (long)(bytes>>10), (long)(((bytes&1023)*100+512)/1024) ); else if (bytes < 2*1024LL*1024LL*1024LL) sprintf(buf, "%ld.%02ldMiB", (long)(bytes>>20), - (long)(bytes&0xfffff)/(0x100000/100) + (long)((bytes&0xfffff)+0x100000/200)/(0x100000/100) ); else sprintf(buf, "%ld.%02ldGiB", (long)(bytes>>30), - (long)((bytes>>10)&0xfffff)/(0x100000/100) + (long)(((bytes>>10)&0xfffff)+0x100000/200)/(0x100000/100) ); return buf; } |