mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
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>
This commit is contained in:
parent
d3e8f63026
commit
cec85d4e00
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue