about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorvan Hauser <vh@thc.org>2023-11-17 07:43:32 +0100
committerGitHub <noreply@github.com>2023-11-17 07:43:32 +0100
commit1179bfeab7ff819bd11077c5a26844ab73feb3f6 (patch)
treea08aeae6c49b5b9845ae6964986919b555854082 /src
parenta0714309834e9aecb348608a2c5da5b726868b82 (diff)
parentb05e3f7ac019224884af9f35d3cfdb72a604d02d (diff)
downloadafl++-1179bfeab7ff819bd11077c5a26844ab73feb3f6.tar.gz
Merge pull request #1909 from ifyGecko/quick_fix
missing closing parenthesis
Diffstat (limited to 'src')
-rw-r--r--src/afl-fuzz-redqueen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/afl-fuzz-redqueen.c b/src/afl-fuzz-redqueen.c
index 86e7f1cf..13f164f5 100644
--- a/src/afl-fuzz-redqueen.c
+++ b/src/afl-fuzz-redqueen.c
@@ -1321,7 +1321,7 @@ static u8 cmp_extend_encoding(afl_state_t *afl, struct cmp_header *h,
     } else {
 
 #ifndef WORD_SIZE_64
-      if (repl <= 0x00ffffffffffffff {
+      if (repl <= 0x00ffffffffffffff) {
 
         new_val = repl << 8;
         u8  scale_len = 0;