diff options
author | Dominik Maier <domenukk@gmail.com> | 2020-04-16 14:42:30 +0200 |
---|---|---|
committer | Dominik Maier <domenukk@gmail.com> | 2020-04-16 14:42:38 +0200 |
commit | b420ccdbf8eba5875e5a0b6a6a9941564dee81bb (patch) | |
tree | adb3332a565c8af146dbafdfff82d5ccfd0a76aa /include/forkserver.h | |
parent | 5e8f3857053671d5d77498c4955322397e66bfaf (diff) | |
download | afl++-b420ccdbf8eba5875e5a0b6a6a9941564dee81bb.tar.gz |
fixed timeout flag to u32
Diffstat (limited to 'include/forkserver.h')
-rw-r--r-- | include/forkserver.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/forkserver.h b/include/forkserver.h index eb1f3ae4..60ec0344 100644 --- a/include/forkserver.h +++ b/include/forkserver.h @@ -65,7 +65,7 @@ typedef struct afl_forkserver { FILE *plot_file; /* Gnuplot output file */ - u8 last_run_timed_out; /* Traced process timed out? */ + u32 last_run_timed_out; /* Traced process timed out? */ u8 last_kill_signal; /* Signal that killed the child */ |