From d2b5523dd88f2dc43c220271f50754c789e2de25 Mon Sep 17 00:00:00 2001 From: "Chang, Harry" Date: Mon, 24 Jul 2017 11:05:46 +0800 Subject: [PATCH] fix typo "ones_u32a" => "ones_u32" --- src/fdr/teddy.c | 2 +- src/fdr/teddy_avx2.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/fdr/teddy.c b/src/fdr/teddy.c index f28d0a50..db68749a 100644 --- a/src/fdr/teddy.c +++ b/src/fdr/teddy.c @@ -86,7 +86,7 @@ do { \ #define CONF_CHUNK_32(chunk, bucket, off, reason, conf_fn) \ do { \ - if (unlikely(chunk != ones_u32a)) { \ + if (unlikely(chunk != ones_u32)) { \ chunk = ~chunk; \ conf_fn(&chunk, bucket, off, confBase, reason, a, ptr, \ &control, &last_match); \ diff --git a/src/fdr/teddy_avx2.c b/src/fdr/teddy_avx2.c index 4091963c..1d037028 100644 --- a/src/fdr/teddy_avx2.c +++ b/src/fdr/teddy_avx2.c @@ -121,7 +121,7 @@ do { \ #define CONF_FAT_CHUNK_32(chunk, bucket, off, reason, conf_fn) \ do { \ - if (unlikely(chunk != ones_u32a)) { \ + if (unlikely(chunk != ones_u32)) { \ chunk = ~chunk; \ conf_fn(&chunk, bucket, off, confBase, reason, a, ptr, \ &control, &last_match); \