From 18b557a0a4aec87d55db6e501b59c7b628a011bb Mon Sep 17 00:00:00 2001 From: Erwan Velu Date: Thu, 14 Oct 2021 22:38:36 +0200 Subject: [PATCH] t/io_uring: Fixing typo s/Maxiumum/Maximum/g Signed-off-by: Erwan Velu --- t/io_uring.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/t/io_uring.c b/t/io_uring.c index 67e15a1a..5a80e074 100644 --- a/t/io_uring.c +++ b/t/io_uring.c @@ -884,9 +884,9 @@ static void do_finish(const char *reason) s->finish = 1; } if (max_iops > 100000) - printf("Maxiumum IOPS=%luK\n", max_iops / 1000); + printf("Maximum IOPS=%luK\n", max_iops / 1000); else if (max_iops) - printf("Maxiumum IOPS=%lu\n", max_iops); + printf("Maximum IOPS=%lu\n", max_iops); finish = 1; } -- 2.25.1