about summary refs log tree commit diff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/afl-fuzz.h7
-rw-r--r--include/cmplog.h1
-rw-r--r--include/forkserver.h2
3 files changed, 5 insertions, 5 deletions
diff --git a/include/afl-fuzz.h b/include/afl-fuzz.h
index 97c1f31c..1440b645 100644
--- a/include/afl-fuzz.h
+++ b/include/afl-fuzz.h
@@ -331,7 +331,8 @@ 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;
+      afl_bench_until_crash, afl_debug_child_output, afl_autoresume,
+      afl_cal_fast;
 
   u8 *afl_tmpdir, *afl_post_library, *afl_custom_mutator_library,
       *afl_python_module, *afl_path, *afl_hang_tmout, *afl_skip_crashes,
@@ -558,7 +559,7 @@ typedef struct afl_state {
 
   /* CmpLog */
 
-  char *cmplog_binary;
+  char *           cmplog_binary;
   afl_forkserver_t cmplog_fsrv;     /* cmplog has its own little forkserver */
 
   /* Custom mutators */
@@ -921,7 +922,7 @@ void   save_cmdline(afl_state_t *, u32, char **);
 
 /* CmpLog */
 
-u8   common_fuzz_cmplog_stuff(afl_state_t *afl, u8 *out_buf, u32 len);
+u8 common_fuzz_cmplog_stuff(afl_state_t *afl, u8 *out_buf, u32 len);
 
 /* RedQueen */
 u8 input_to_state_stage(afl_state_t *afl, u8 *orig_buf, u8 *buf, u32 len,
diff --git a/include/cmplog.h b/include/cmplog.h
index 4731f779..74e6a3bb 100644
--- a/include/cmplog.h
+++ b/include/cmplog.h
@@ -79,6 +79,5 @@ struct cmp_map {
 
 void cmplog_exec_child(afl_forkserver_t *fsrv, char **argv);
 
-
 #endif
 
diff --git a/include/forkserver.h b/include/forkserver.h
index e1707429..444f92df 100644
--- a/include/forkserver.h
+++ b/include/forkserver.h
@@ -68,7 +68,7 @@ typedef struct afl_forkserver {
 
   u8 qemu_mode;                         /* if running in qemu mode or not   */
 
-  char *cmplog_binary;                    /* the name of the cmplog binary    */
+  char *cmplog_binary;                  /* the name of the cmplog binary    */
 
   /* Function to kick off the forkserver child */
   void (*init_child_func)(struct afl_forkserver *fsrv, char **argv);