commit | 0728d69d6d1a096d77d95824cabedfb1b86a9bfa | [log] [tgz] |
---|---|---|
author | Ron Eldor <Ron.Eldor@arm.com> | Wed Nov 29 12:08:35 2017 +0200 |
committer | Ron Eldor <Ron.Eldor@arm.com> | Wed Nov 29 12:08:35 2017 +0200 |
tree | 46d53537c3666c8678d7fdcb97dfd2f5659b5659 | |
parent | a0748019f1e56c6e19b8156f62cd08fbd7960aa8 [diff] [blame] |
Change kB to KiB Change the style of the units to KiB, according to https://docs.mbed.com/docs/writing-and-publishing-guides/en/latest/units/
diff --git a/programs/test/benchmark.c b/programs/test/benchmark.c index 6b70b58..a2677af 100644 --- a/programs/test/benchmark.c +++ b/programs/test/benchmark.c
@@ -126,7 +126,7 @@ CODE; \ } \ \ - mbedtls_printf( "%9lu kB/s, %9lu cycles/byte\n", \ + mbedtls_printf( "%9lu KiB/s, %9lu cycles/byte\n", \ ii * BUFSIZE / 1024, \ ( mbedtls_timing_hardclock() - tsc ) / ( jj * BUFSIZE ) ); \ } while( 0 )