about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorvanhauser-thc <vh@thc.org>2023-10-24 11:52:02 +0200
committervanhauser-thc <vh@thc.org>2023-10-24 11:52:02 +0200
commitf7fab7915550196366e47204d882886671d5bbf9 (patch)
tree90471acf8656b76e9dca80f6ff823ba62adcfcff /src
parentb8e55064c67afe5d5546339afecff54c4d95f428 (diff)
downloadafl++-f7fab7915550196366e47204d882886671d5bbf9.tar.gz
code format
Diffstat (limited to 'src')
-rw-r--r--src/afl-cc.c1
-rw-r--r--src/afl-fuzz-bitmap.c3
2 files changed, 3 insertions, 1 deletions
diff --git a/src/afl-cc.c b/src/afl-cc.c
index 5f8f278f..c3c677b4 100644
--- a/src/afl-cc.c
+++ b/src/afl-cc.c
@@ -1145,6 +1145,7 @@ static void edit_params(u32 argc, char **argv, char **envp) {
   if (!have_pic) { cc_params[cc_par_cnt++] = "-fPIC"; }
 
   if (!getenv("AFL_LLVM_NO_RPATH")) {
+
     // in case LLVM is installed not via a package manager or "make install"
     // e.g. compiled download or compiled from github then its ./lib directory
     // might not be in the search path. Add it if so.
diff --git a/src/afl-fuzz-bitmap.c b/src/afl-fuzz-bitmap.c
index d76158ce..568c5274 100644
--- a/src/afl-fuzz-bitmap.c
+++ b/src/afl-fuzz-bitmap.c
@@ -866,7 +866,8 @@ save_if_interesting(afl_state_t *afl, void *mem, u32 len, u8 fault) {
     if (unlikely(fd < 0)) { PFATAL("Unable to create '%s'", fn_log); }
 
     u32 nyx_aux_string_len = afl->fsrv.nyx_handlers->nyx_get_aux_string(
-        afl->fsrv.nyx_runner, afl->fsrv.nyx_aux_string, afl->fsrv.nyx_aux_string_len);
+        afl->fsrv.nyx_runner, afl->fsrv.nyx_aux_string,
+        afl->fsrv.nyx_aux_string_len);
 
     ck_write(fd, afl->fsrv.nyx_aux_string, nyx_aux_string_len, fn_log);
     close(fd);