From: Jens Axboe Date: Sat, 27 Sep 2014 14:43:27 +0000 (-0600) Subject: crc/test: fix alignment X-Git-Tag: fio-2.1.13~26 X-Git-Url: https://git.kernel.dk/?p=fio.git;a=commitdiff_plain;h=d78bbd4c3f3f58ad2a6699c416ea773faa097519 crc/test: fix alignment Signed-off-by: Jens Axboe --- diff --git a/crc/test.c b/crc/test.c index 95f1c2e7..63963d0f 100644 --- a/crc/test.c +++ b/crc/test.c @@ -280,6 +280,7 @@ int fio_crctest(const char *type) struct timeval tv; double mb_sec; uint64_t usec; + char pre[3]; if (!(t[i].mask & test_mask)) continue; @@ -299,7 +300,11 @@ int fio_crctest(const char *type) mb_sec = (double) mb / (double) usec; mb_sec /= (1.024 * 1.024); - printf("%s:\t%8.2f MB/sec\n", t[i].name, mb_sec); + if (strlen(t[i].name) >= 7) + sprintf(pre, "\t"); + else + sprintf(pre, "\t\t"); + printf("%s:%s%8.2f MB/sec\n", t[i].name, pre, mb_sec); first = 0; }