X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=t%2Fread-to-pipe-async.c;h=ebdd8f1066f7c29588f620792ad12046838f0f8c;hp=e8bdc85756daac7b7b3f1d4a2b9fec3358d03967;hb=21ba66069c2f9273e17adf59e2be014da81372f7;hpb=53280a1dc785ef0447aa5cf8e32e899ecfc22978 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;