From: David Christensen Date: Wed, 8 May 2019 21:02:08 +0000 (-0500) Subject: test/barrier: fix typo in log X-Git-Url: http://git.droids-corp.org/?p=dpdk.git;a=commitdiff_plain;h=834e4896a5a24d8fae72e9ad3f83bac2a537f8b8 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 --- 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; } }