diff --git a/common/image.c b/common/image.c
index 89b3ef6a4643341a221440d13df03a68fa8a8804..0f88984f2d40212fe8bdafd124a8de97846cbc86 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