1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-06-25 12:41:56 +03:00

Change KB to kB

Change KB to kB, as this is the proper way to write kilo bytes
This commit is contained in:
Ron Eldor
2017-11-28 16:48:51 +02:00
parent 46cf773f2f
commit a0748019f1
3 changed files with 20 additions and 20 deletions

View File

@ -229,7 +229,7 @@ do { \
CODE; \
} \
\
mbedtls_printf( "%9lu KB/s, %9lu cycles/byte\r\n", \
mbedtls_printf( "%9lu kB/s, %9lu cycles/byte\r\n", \
i * BUFSIZE / 1024, \
( mbedtls_timing_hardclock() - tsc ) / ( j * BUFSIZE ) ); \
} while( 0 )