From 834e4896a5a24d8fae72e9ad3f83bac2a537f8b8 Mon Sep 17 00:00:00 2001 From: David Christensen Date: Wed, 8 May 2019 16:02:08 -0500 Subject: [PATCH] test/barrier: fix typo in log Change "much" to "match" in a printf. Fixes: 93da5b59afc9 ("test: introduce memory barrier test case") Cc: stable@dpdk.org Signed-off-by: David Christensen Acked-by: Konstantin Ananyev --- app/test/test_barrier.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/test/test_barrier.c b/app/test/test_barrier.c index 82b572c3eb..c219d56020 100644 --- a/app/test/test_barrier.c +++ b/app/test/test_barrier.c @@ -252,7 +252,7 @@ plock_test(uint32_t iter, enum plock_use_type utype) /* race condition occurred, lock doesn't work properly */ if (sum[i] != pt[i].val || 2 * iter != pt[i].iter) { - printf("error: local and shared sums don't much\n"); + printf("error: local and shared sums don't match\n"); rc = -1; } } -- 2.20.1