diff options
author | vanhauser-thc <vh@thc.org> | 2023-08-13 10:18:33 +0200 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2023-08-13 10:18:33 +0200 |
commit | 26f29fd485efaa08824c27501f82caeea525b5e3 (patch) | |
tree | a2b65ecbfc2a890094593e56209b98cb20270677 /src/afl-fuzz-bitmap.c | |
parent | f838509d4989ff85ac7fef79ce60ae7cf8e1960b (diff) | |
download | afl++-26f29fd485efaa08824c27501f82caeea525b5e3.tar.gz |
nits
Diffstat (limited to 'src/afl-fuzz-bitmap.c')
-rw-r--r-- | src/afl-fuzz-bitmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/afl-fuzz-bitmap.c b/src/afl-fuzz-bitmap.c index 87157cad..0429db34 100644 --- a/src/afl-fuzz-bitmap.c +++ b/src/afl-fuzz-bitmap.c @@ -474,7 +474,7 @@ save_if_interesting(afl_state_t *afl, void *mem, u32 len, u8 fault) { /* Generating a hash on every input is super expensive. Bad idea and should only be used for special schedules */ - if (unlikely(afl->schedule >= FAST && afl->schedule <= RARE)) { + if (likely(afl->schedule >= FAST && afl->schedule <= RARE)) { classify_counts(&afl->fsrv); classified = 1; |