From d78bbd4c3f3f58ad2a6699c416ea773faa097519 Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Sat, 27 Sep 2014 08:43:27 -0600 Subject: [PATCH] crc/test: fix alignment Signed-off-by: Jens Axboe --- crc/test.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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; } -- 2.25.1