diff options
author | David CARLIER <devnexen@gmail.com> | 2020-04-12 15:55:52 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-12 16:55:52 +0200 |
commit | 79195454993b6cfff6b03354dbf1e045e77f83cb (patch) | |
tree | 314795c419d2d78d7f043df4bc0d42a5c09e5b8f /src/afl-fuzz-one.c | |
parent | 5a8db5954cac56cffa4f0066476db210dca4d330 (diff) | |
download | afl++-79195454993b6cfff6b03354dbf1e045e77f83cb.tar.gz |
Better solution for ARM64 build fix (#315)
Diffstat (limited to 'src/afl-fuzz-one.c')
-rw-r--r-- | src/afl-fuzz-one.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/afl-fuzz-one.c b/src/afl-fuzz-one.c index 01ce37fb..80567160 100644 --- a/src/afl-fuzz-one.c +++ b/src/afl-fuzz-one.c @@ -405,7 +405,7 @@ u8 fuzz_one_original(afl_state_t *afl) { if (unlikely(afl->not_on_tty)) { - ACTF("Fuzzing test case #%u (%u total, %" PRIu64 " uniq crashes found)...", + ACTF("Fuzzing test case #%u (%u total, %llu uniq crashes found)...", afl->current_entry, afl->queued_paths, afl->unique_crashes); fflush(stdout); @@ -2432,7 +2432,7 @@ u8 mopt_common_fuzzing(afl_state_t *afl, MOpt_globals_t MOpt_globals) { if (afl->not_on_tty) { - ACTF("Fuzzing test case #%u (%u total, %" PRIu64 " uniq crashes found)...", + ACTF("Fuzzing test case #%u (%u total, %llu uniq crashes found)...", afl->current_entry, afl->queued_paths, afl->unique_crashes); fflush(stdout); |