diff options
author | David CARLIER <devnexen@gmail.com> | 2020-05-09 23:21:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-10 00:21:26 +0200 |
commit | 515de0d68d30a4e69fe5fb971c622391185fc4ba (patch) | |
tree | 0a69ca39b459d5ecd6c59538f2766c73cb79f9e5 /src/afl-fuzz-stats.c | |
parent | 1eeb6785adb1daba4970c923a3e9344c294deebd (diff) | |
download | afl++-515de0d68d30a4e69fe5fb971c622391185fc4ba.tar.gz |
Illumos biuld fix (#357)
Diffstat (limited to 'src/afl-fuzz-stats.c')
-rw-r--r-- | src/afl-fuzz-stats.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/afl-fuzz-stats.c b/src/afl-fuzz-stats.c index 032cf01d..014ed34d 100644 --- a/src/afl-fuzz-stats.c +++ b/src/afl-fuzz-stats.c @@ -72,7 +72,7 @@ void write_stats_file(afl_state_t *afl, double bitmap_cvg, double stability, "start_time : %llu\n" "last_update : %llu\n" "run_time : %llu\n" - "fuzzer_pid : %d\n" + "fuzzer_pid : %u\n" "cycles_done : %llu\n" "cycles_wo_finds : %llu\n" "execs_done : %llu\n" @@ -106,7 +106,7 @@ void write_stats_file(afl_state_t *afl, double bitmap_cvg, double stability, "target_mode : %s%s%s%s%s%s%s%s\n" "command_line : %s\n", afl->start_time / 1000, cur_time / 1000, - (cur_time - afl->start_time) / 1000, getpid(), + (cur_time - afl->start_time) / 1000, (u32)getpid(), afl->queue_cycle ? (afl->queue_cycle - 1) : 0, afl->cycles_wo_finds, afl->fsrv.total_execs, afl->fsrv.total_execs / |