diff options
author | van Hauser <vh@thc.org> | 2021-01-17 15:18:20 +0100 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2021-01-17 15:18:20 +0100 |
commit | c71ce79963ffd3e1203d1078b8a60f91c4ecebf1 (patch) | |
tree | 0ba00a7276a25373ad8ba6582843eb5cb3303ce6 /include | |
parent | a0e884cf8bffe1a0394d106375f6a23edd2b60e6 (diff) | |
download | afl++-c71ce79963ffd3e1203d1078b8a60f91c4ecebf1.tar.gz |
fix colorization
Diffstat (limited to 'include')
-rw-r--r-- | include/afl-fuzz.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/afl-fuzz.h b/include/afl-fuzz.h index 8a2122dc..621e8745 100644 --- a/include/afl-fuzz.h +++ b/include/afl-fuzz.h @@ -1136,9 +1136,9 @@ void read_foreign_testcases(afl_state_t *, int); u8 common_fuzz_cmplog_stuff(afl_state_t *afl, u8 *out_buf, u32 len); /* RedQueen */ -u8 input_to_state_stage(afl_state_t *afl, u8 *orig_buf, u8 *buf, u32 len, - u64 exec_cksum); +u8 input_to_state_stage(afl_state_t *afl, u8 *orig_buf, u8 *buf, u32 len); +/* our RNG wrapper */ AFL_RAND_RETURN rand_next(afl_state_t *afl); /* probability between 0.0 and 1.0 */ |