formatting

This commit is contained in:
Ruben ten Hove
2022-06-17 21:08:37 +02:00
parent 3d1a57deed
commit 4990823840
4 changed files with 10 additions and 1 deletions

View File

@ -720,7 +720,12 @@ save_if_interesting(afl_state_t *afl, void *mem, u32 len, u8 fault) {
}
if (unlikely(!afl->saved_crashes) && (afl->afl_env.afl_no_crash_readme != 1)) { write_crash_readme(afl); }
if (unlikely(!afl->saved_crashes) &&
(afl->afl_env.afl_no_crash_readme != 1)) {
write_crash_readme(afl);
}
#ifndef SIMPLE_FILES
@ -821,3 +826,4 @@ save_if_interesting(afl_state_t *afl, void *mem, u32 len, u8 fault) {
return keeping;
}