about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorvanhauser-thc <vh@thc.org>2022-03-17 15:48:06 +0100
committervanhauser-thc <vh@thc.org>2022-03-17 15:48:06 +0100
commit3c11a377570512efeb3a197148ff1b7dddbd8e32 (patch)
tree4ff4f3cae62befaafaee2f605e3cc7a56f46ed9d /src
parente4f201707fdfbf9a36b6a48c16f75b0fef2c9e75 (diff)
downloadafl++-3c11a377570512efeb3a197148ff1b7dddbd8e32.tar.gz
fixes for llvm < 11
Diffstat (limited to 'src')
-rw-r--r--src/afl-ld-lto.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/afl-ld-lto.c b/src/afl-ld-lto.c
index f2f95fd7..5797def8 100644
--- a/src/afl-ld-lto.c
+++ b/src/afl-ld-lto.c
@@ -237,7 +237,8 @@ static void edit_params(int argc, char **argv) {
       }
 
       if (!rt_present)
-        ld_params[ld_param_cnt++] = alloc_printf("%s/afl-compiler-rt.o", afl_path);
+        ld_params[ld_param_cnt++] =
+            alloc_printf("%s/afl-compiler-rt.o", afl_path);
       if (!rt_lto_present)
         ld_params[ld_param_cnt++] =
             alloc_printf("%s/afl-llvm-rt-lto.o", afl_path);