about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/afl-forkserver.c11
-rw-r--r--src/afl-fuzz.c2
2 files changed, 9 insertions, 4 deletions
diff --git a/src/afl-forkserver.c b/src/afl-forkserver.c
index ffcb30c3..62110ad5 100644
--- a/src/afl-forkserver.c
+++ b/src/afl-forkserver.c
@@ -405,20 +405,25 @@ void afl_fsrv_start(afl_forkserver_t *fsrv, char **argv,
 
     }
 
-    if (fsrv->nyx_standalone){
+    if (fsrv->nyx_standalone) {
+
       fsrv->nyx_runner = fsrv->nyx_handlers->nyx_new(
           fsrv->target_path, x, fsrv->nyx_bind_cpu_id, MAX_FILE, true);
-    }
-    else{
+
+    } else {
+
       if (fsrv->nyx_parent) {
+
         fsrv->nyx_runner = fsrv->nyx_handlers->nyx_new_parent(
             fsrv->target_path, x, fsrv->nyx_bind_cpu_id, MAX_FILE, true);
 
       } else {
+
         fsrv->nyx_runner = fsrv->nyx_handlers->nyx_new_child(
             fsrv->target_path, x, fsrv->nyx_bind_cpu_id, fsrv->nyx_id);
 
       }
+
     }
 
     if (fsrv->nyx_runner == NULL) { FATAL("Something went wrong ..."); }
diff --git a/src/afl-fuzz.c b/src/afl-fuzz.c
index 50874f47..e322ee57 100644
--- a/src/afl-fuzz.c
+++ b/src/afl-fuzz.c
@@ -1346,7 +1346,7 @@ int main(int argc, char **argv_orig, char **envp) {
               "0)");
 
         }
-        
+
         afl->fsrv.nyx_parent = true;
         afl->fsrv.nyx_id = 0;