diff options
author | van Hauser <vh@thc.org> | 2020-03-15 19:39:03 +0100 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-03-15 19:39:03 +0100 |
commit | 87599de782fc237de5c6f682651101c7f3523e3f (patch) | |
tree | bc284f07e9458d316d608ab84b50331ec1edad89 /include/afl-fuzz.h | |
parent | 126d1f1cd14c6bb1fb59159965045f02d98d1b43 (diff) | |
download | afl++-87599de782fc237de5c6f682651101c7f3523e3f.tar.gz |
fix errors in last commit (u8)afl_get_env
Diffstat (limited to 'include/afl-fuzz.h')
-rw-r--r-- | include/afl-fuzz.h | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/include/afl-fuzz.h b/include/afl-fuzz.h index fe3926a7..87903c33 100644 --- a/include/afl-fuzz.h +++ b/include/afl-fuzz.h @@ -304,12 +304,10 @@ extern char *power_names[POWER_SCHEDULES_NUM]; typedef struct afl_env_vars { - u8 afl_skip_cpufreq, afl_exit_when_done, afl_no_affinity, - afl_skip_bin_check, afl_dumb_forksrv, - afl_import_first, afl_custom_mutator_only, - afl_no_ui, afl_force_ui, afl_i_dont_care_about_missing_crashes, - afl_bench_just_one, afl_bench_until_crash, afl_debug_child_output, - afl_autoresume; + u8 afl_skip_cpufreq, afl_exit_when_done, afl_no_affinity, afl_skip_bin_check, + afl_dumb_forksrv, afl_import_first, afl_custom_mutator_only, afl_no_ui, + afl_force_ui, afl_i_dont_care_about_missing_crashes, afl_bench_just_one, + afl_bench_until_crash, afl_debug_child_output, afl_autoresume; u8 *afl_tmpdir, *afl_post_library, *afl_custom_mutator_library, *afl_python_module, *afl_path, *afl_hang_tmout, *afl_skip_crashes, |