From: Chang, Harry Date: Mon, 24 Jul 2017 03:05:46 +0000 (+0800) Subject: fix typo "ones_u32a" => "ones_u32" X-Git-Tag: v4.6.0^2~94 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d2b5523dd88f2dc43c220271f50754c789e2de25;p=thirdparty%2Fvectorscan.git fix typo "ones_u32a" => "ones_u32" --- 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); \