diff options
author | van Hauser <vh@thc.org> | 2020-03-11 11:42:57 +0100 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-03-11 11:42:57 +0100 |
commit | 684f4dd1c44053517c6685a8a3137691535ecd84 (patch) | |
tree | 67b729127193050c7812bf2159ffac047b45280d /include/afl-fuzz.h | |
parent | d8d89507b5cdbd066c149fd3c86a91b3948521aa (diff) | |
download | afl++-684f4dd1c44053517c6685a8a3137691535ecd84.tar.gz |
honor afl_quiet on env var checks + code-format
Diffstat (limited to 'include/afl-fuzz.h')
-rw-r--r-- | include/afl-fuzz.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/include/afl-fuzz.h b/include/afl-fuzz.h index 805d0084..72010f68 100644 --- a/include/afl-fuzz.h +++ b/include/afl-fuzz.h @@ -284,14 +284,14 @@ enum { typedef struct MOpt_globals { - u64 *finds; - u64 *finds_v2; - u64 *cycles; - u64 *cycles_v2; - u64 *cycles_v3; - u32 is_pilot_mode; - u64 *pTime; - u64 period; + u64 * finds; + u64 * finds_v2; + u64 * cycles; + u64 * cycles_v2; + u64 * cycles_v3; + u32 is_pilot_mode; + u64 * pTime; + u64 period; char *havoc_stagename; char *splice_stageformat; char *havoc_stagenameshort; @@ -548,7 +548,7 @@ extern list_t afl_states; struct custom_mutator { const char *name; - void *dh; + void * dh; /* hooks for the custom mutator function */ @@ -696,8 +696,8 @@ struct custom_mutator { * argument can be NULL while initializing the fuzzer */ void (*afl_custom_queue_new_entry)(afl_state_t *afl, - const u8 *filename_new_queue, - const u8 *filename_orig_queue); + const u8 * filename_new_queue, + const u8 * filename_orig_queue); }; |