summaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorxypron.glpk@gmx.de <xypron.glpk@gmx.de>2017-01-04 13:04:44 (GMT)
committerTom Rini <trini@konsulko.com>2017-01-20 20:37:59 (GMT)
commitcec85d4e002d9b6aa0f98bec50e9fa09dd013cdd (patch)
treece1f7da1f87714f4cbc5df898c480600557a11a7 /common
parentd3e8f63026fa37dc09dcfd803df81e5452f87df9 (diff)
downloadu-boot-cec85d4e002d9b6aa0f98bec50e9fa09dd013cdd.tar.xz
common/image.c: Use correct suffixes for binary sizes
IEC 80000-13:2008 Quantities and units Part 13: Information science and technology defines the prefixes to use for binary multiples. So instead of writing Data Size: 6726132 Bytes = 6568.49 kB = 6.41 MB in dumpimage we should write Data Size: 6726132 Bytes = 6568.49 KiB = 6.41 MiB. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'common')
-rw-r--r--common/image.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/image.c b/common/image.c
index 89b3ef6..0f88984 100644
--- a/common/image.c
+++ b/common/image.c
@@ -561,7 +561,7 @@ void genimg_print_size(uint32_t size)
printf("%d Bytes = ", size);
print_size(size, "\n");
#else
- printf("%d Bytes = %.2f kB = %.2f MB\n",
+ printf("%d Bytes = %.2f KiB = %.2f MiB\n",
size, (double)size / 1.024e3,
(double)size / 1.048576e6);
#endif