]> git.droids-corp.org - dpdk.git/commitdiff
test/barrier: fix typo in log
authorDavid Christensen <drc@linux.vnet.ibm.com>
Wed, 8 May 2019 21:02:08 +0000 (16:02 -0500)
committerThomas Monjalon <thomas@monjalon.net>
Thu, 9 May 2019 19:56:02 +0000 (21:56 +0200)
Change "much" to "match" in a printf.

Fixes: 93da5b59afc9 ("test: introduce memory barrier test case")
Cc: stable@dpdk.org
Signed-off-by: David Christensen <drc@linux.vnet.ibm.com>
Acked-by: Konstantin Ananyev <konstantin.ananyev@intel.com>
app/test/test_barrier.c

index 82b572c3eb612110bf4bf384b1ef97a4ce250836..c219d56020f32ba483fbcb55da210918b5d3f751 100644 (file)
@@ -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;
                }
        }