summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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