X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;f=t%2Fread-to-pipe-async.c;h=ebdd8f1066f7c29588f620792ad12046838f0f8c;hb=fada2fcd693a2c7fde5ebd36ff9255b549b102ab;hp=e8bdc85756daac7b7b3f1d4a2b9fec3358d03967;hpb=3bf80dad77448afcb18148e72dc6cfe04bcf7e57;p=fio.git diff --git a/t/read-to-pipe-async.c b/t/read-to-pipe-async.c index e8bdc857..ebdd8f10 100644 --- a/t/read-to-pipe-async.c +++ b/t/read-to-pipe-async.c @@ -661,9 +661,9 @@ int main(int argc, char *argv[]) bytes /= 1024; rate = (bytes * 1000UL * 1000UL) / utime_since(&s, &re); - fprintf(stderr, "Read rate (KB/sec) : %lu\n", rate); + fprintf(stderr, "Read rate (KiB/sec) : %lu\n", rate); rate = (bytes * 1000UL * 1000UL) / utime_since(&s, &we); - fprintf(stderr, "Write rate (KB/sec): %lu\n", rate); + fprintf(stderr, "Write rate (KiB/sec): %lu\n", rate); close(fd); return 0;