about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/afl-analyze.c2
-rw-r--r--src/afl-fuzz-one.c6
-rw-r--r--src/afl-fuzz-stats.c6
-rw-r--r--src/afl-fuzz.c10
-rw-r--r--src/afl-showmap.c2
-rw-r--r--src/afl-tmin.c2
6 files changed, 13 insertions, 15 deletions
diff --git a/src/afl-analyze.c b/src/afl-analyze.c
index cf5e9b16..f9ba8860 100644
--- a/src/afl-analyze.c
+++ b/src/afl-analyze.c
@@ -52,7 +52,7 @@
 #include <sys/wait.h>
 #include <sys/time.h>
 #ifndef USEMMAP
-#include <sys/shm.h>
+  #include <sys/shm.h>
 #endif
 #include <sys/stat.h>
 #include <sys/types.h>
diff --git a/src/afl-fuzz-one.c b/src/afl-fuzz-one.c
index a247a837..fc5760cc 100644
--- a/src/afl-fuzz-one.c
+++ b/src/afl-fuzz-one.c
@@ -3852,7 +3852,7 @@ pacemaker_fuzzing:
               afl->extras[j].len > len - i ||
               !memcmp(afl->extras[j].data, out_buf + i, afl->extras[j].len) ||
               (eff_map && !memchr(eff_map + EFF_APOS(i), 1,
-                      EFF_SPAN_ALEN(i, afl->extras[j].len)))) {
+                                  EFF_SPAN_ALEN(i, afl->extras[j].len)))) {
 
             afl->stage_max--;
             continue;
@@ -3960,7 +3960,7 @@ pacemaker_fuzzing:
               !memcmp(afl->a_extras[j].data, out_buf + i,
                       afl->a_extras[j].len) ||
               (eff_map && !memchr(eff_map + EFF_APOS(i), 1,
-                      EFF_SPAN_ALEN(i, afl->a_extras[j].len)))) {
+                                  EFF_SPAN_ALEN(i, afl->a_extras[j].len)))) {
 
             afl->stage_max--;
             continue;
@@ -3986,7 +3986,7 @@ pacemaker_fuzzing:
       afl->stage_finds[STAGE_EXTRAS_AO] += new_hit_cnt - orig_hit_cnt;
       afl->stage_cycles[STAGE_EXTRAS_AO] += afl->stage_max;
 
-    // AFLpp: Never read: skip_extras_v2:
+      // AFLpp: Never read: skip_extras_v2:
       // new_hit_cnt = afl->queued_paths + afl->unique_crashes;
 
     }
diff --git a/src/afl-fuzz-stats.c b/src/afl-fuzz-stats.c
index de58f277..28473c0c 100644
--- a/src/afl-fuzz-stats.c
+++ b/src/afl-fuzz-stats.c
@@ -124,11 +124,11 @@ void write_stats_file(afl_state_t *afl, double bitmap_cvg, double stability,
       afl->last_hang_time / 1000, afl->fsrv.total_execs - afl->last_crash_execs,
       afl->fsrv.exec_tmout, afl->slowest_exec_ms,
 #ifndef __HAIKU__
-#ifdef __APPLE__
+  #ifdef __APPLE__
       (unsigned long int)(rus.ru_maxrss >> 20),
-#else
+  #else
       (unsigned long int)(rus.ru_maxrss >> 10),
-#endif
+  #endif
 #else
       -1UL,
 #endif
diff --git a/src/afl-fuzz.c b/src/afl-fuzz.c
index b84585bb..cefcd73f 100644
--- a/src/afl-fuzz.c
+++ b/src/afl-fuzz.c
@@ -33,16 +33,14 @@ extern u64 time_spent_working;
 
 static void at_exit() {
 
-  int i;
+  int   i;
   char *ptr = getenv("__AFL_TARGET_PID1");
 
-  if (ptr && *ptr && (i = atoi(ptr)) > 0)
-    kill(i, SIGKILL);
+  if (ptr && *ptr && (i = atoi(ptr)) > 0) kill(i, SIGKILL);
 
   ptr = getenv("__AFL_TARGET_PID2");
 
-  if (ptr && *ptr && (i = atoi(ptr)) > 0)
-    kill(i, SIGKILL);
+  if (ptr && *ptr && (i = atoi(ptr)) > 0) kill(i, SIGKILL);
 
   // anything else? shared memory?
 
@@ -1259,7 +1257,7 @@ int main(int argc, char **argv_orig, char **envp) {
     OKF("Cmplog forkserver successfully started");
 
   }
-  
+
   atexit(at_exit);
 
   perform_dry_run(afl);
diff --git a/src/afl-showmap.c b/src/afl-showmap.c
index 70a30ce4..7b46cd2b 100644
--- a/src/afl-showmap.c
+++ b/src/afl-showmap.c
@@ -57,7 +57,7 @@
 #include <sys/wait.h>
 #include <sys/time.h>
 #ifndef USEMMAP
-#include <sys/shm.h>
+  #include <sys/shm.h>
 #endif
 #include <sys/stat.h>
 #include <sys/types.h>
diff --git a/src/afl-tmin.c b/src/afl-tmin.c
index 5a28ba79..9df5112b 100644
--- a/src/afl-tmin.c
+++ b/src/afl-tmin.c
@@ -55,7 +55,7 @@
 #include <sys/wait.h>
 #include <sys/time.h>
 #ifndef USEMMAP
-#include <sys/shm.h>
+  #include <sys/shm.h>
 #endif
 #include <sys/stat.h>
 #include <sys/types.h>