t/io_uring: Fixing typo
authorErwan Velu <erwanaliasr1@gmail.com>
Thu, 14 Oct 2021 20:38:36 +0000 (22:38 +0200)
committerErwan Velu <erwanaliasr1@gmail.com>
Thu, 14 Oct 2021 20:38:36 +0000 (22:38 +0200)
s/Maxiumum/Maximum/g

Signed-off-by: Erwan Velu <erwanaliasr1@gmail.com>
t/io_uring.c

index 67e15a1a451391ce0bab98cc894860bb30d73432..5a80e074f3933b1b0dc60514875e22b18741ee42 100644 (file)
@@ -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;
 }