diff options
-rw-r--r-- | test/timeout-overflow.c | 4 |
1 files 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; |