From 98cbe6a1a29dd66a7cc758b753d051d0b319584f Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Mon, 22 Jun 2020 10:25:17 -0600 Subject: test/timeout-overflow: use #X for the timeout number 'th doesn't really work for 1/2/3 timeouts, just use # to make it clear we're dealing with the timeout number. Signed-off-by: Jens Axboe --- test/timeout-overflow.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/timeout-overflow.c b/test/timeout-overflow.c index 820e629..1074e2b 100644 --- a/test/timeout-overflow.c +++ b/test/timeout-overflow.c @@ -146,14 +146,14 @@ static int test_timeout_overflow() case 4: if (cqe->res == -ETIME) { fprintf(stderr, "expected not return -ETIME " - "for the %d'th timeout req\n", i - 1); + "for the #%d timeout req\n", i - 1); goto err; } break; case 5: if (cqe->res != -ETIME) { fprintf(stderr, "expected return -ETIME for " - "the %d'th timeout req\n", i - 1); + "the #%d timeout req\n", i - 1); goto err; } break; -- cgit v1.2.3