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 /src/afl-fuzz-bitmap.c | |
parent | d8d89507b5cdbd066c149fd3c86a91b3948521aa (diff) | |
download | afl++-684f4dd1c44053517c6685a8a3137691535ecd84.tar.gz |
honor afl_quiet on env var checks + code-format
Diffstat (limited to 'src/afl-fuzz-bitmap.c')
-rw-r--r-- | src/afl-fuzz-bitmap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/afl-fuzz-bitmap.c b/src/afl-fuzz-bitmap.c index 96772032..f9f05131 100644 --- a/src/afl-fuzz-bitmap.c +++ b/src/afl-fuzz-bitmap.c @@ -461,8 +461,8 @@ u8 *describe_op(afl_state_t *afl, u8 hnb) { static void write_crash_readme(afl_state_t *afl) { - u8 *fn = alloc_printf("%s/crashes/README.txt", afl->out_dir); - s32 fd; + u8 * fn = alloc_printf("%s/crashes/README.txt", afl->out_dir); + s32 fd; FILE *f; fd = open(fn, O_WRONLY | O_CREAT | O_EXCL, 0600); |