fix typo "ones_u32a" => "ones_u32"

This commit is contained in:
Chang, Harry 2017-07-24 11:05:46 +08:00 committed by Matthew Barr
parent 68e08d8e18
commit d2b5523dd8
2 changed files with 2 additions and 2 deletions

View File

@ -86,7 +86,7 @@ do { \
#define CONF_CHUNK_32(chunk, bucket, off, reason, conf_fn) \ #define CONF_CHUNK_32(chunk, bucket, off, reason, conf_fn) \
do { \ do { \
if (unlikely(chunk != ones_u32a)) { \ if (unlikely(chunk != ones_u32)) { \
chunk = ~chunk; \ chunk = ~chunk; \
conf_fn(&chunk, bucket, off, confBase, reason, a, ptr, \ conf_fn(&chunk, bucket, off, confBase, reason, a, ptr, \
&control, &last_match); \ &control, &last_match); \

View File

@ -121,7 +121,7 @@ do { \
#define CONF_FAT_CHUNK_32(chunk, bucket, off, reason, conf_fn) \ #define CONF_FAT_CHUNK_32(chunk, bucket, off, reason, conf_fn) \
do { \ do { \
if (unlikely(chunk != ones_u32a)) { \ if (unlikely(chunk != ones_u32)) { \
chunk = ~chunk; \ chunk = ~chunk; \
conf_fn(&chunk, bucket, off, confBase, reason, a, ptr, \ conf_fn(&chunk, bucket, off, confBase, reason, a, ptr, \
&control, &last_match); \ &control, &last_match); \