about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorvan Hauser <vh@thc.org>2020-06-23 21:23:10 +0200
committervan Hauser <vh@thc.org>2020-06-23 21:23:10 +0200
commit49a769ac06c78b90882a646f1bcf60248e584b5f (patch)
tree72c5a200f3b28a76bbdb77a193cf2fcae229cde2 /src
parent2b450aeb20c31dc26d84d1429ad10b01af7138d8 (diff)
downloadafl++-49a769ac06c78b90882a646f1bcf60248e584b5f.tar.gz
lto whitelist in test.sh
Diffstat (limited to 'src')
-rw-r--r--src/afl-performance.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/afl-performance.c b/src/afl-performance.c
index 757bbe1e..a3febdbf 100644
--- a/src/afl-performance.c
+++ b/src/afl-performance.c
@@ -36,7 +36,8 @@ static inline uint64_t rotl(const uint64_t x, int k) {
 void rand_set_seed(afl_state_t *afl, s64 init_seed) {
 
   afl->init_seed = init_seed;
-  afl->rand_seed[0] = hash64((void *)&afl->init_seed, sizeof(afl->init_seed), HASH_CONST);
+  afl->rand_seed[0] =
+      hash64((void *)&afl->init_seed, sizeof(afl->init_seed), HASH_CONST);
   afl->rand_seed[1] = afl->rand_seed[0] ^ 0x1234567890abcdef;
   afl->rand_seed[2] = afl->rand_seed[0] & 0x0123456789abcdef;
   afl->rand_seed[3] = afl->rand_seed[0] | 0x01abcde43f567908;