aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorvanhauser-thc <vh@thc.org>2022-04-25 10:14:04 +0200
committervanhauser-thc <vh@thc.org>2022-04-25 10:14:04 +0200
commitee409d18a6678c3f5948f51db8964148cae021dc (patch)
tree2fb8cee9897c46a53e756e898de732c63f2a8842 /src
parent5d5aa430d2328e247ffbad45f486a835f5dc8852 (diff)
downloadAFLplusplus-ee409d18a6678c3f5948f51db8964148cae021dc.tar.gz
code format
Diffstat (limited to 'src')
-rw-r--r--src/afl-cc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/afl-cc.c b/src/afl-cc.c
index e8643bf8..2667ae28 100644
--- a/src/afl-cc.c
+++ b/src/afl-cc.c
@@ -846,8 +846,8 @@ static void edit_params(u32 argc, char **argv, char **envp) {
// e.g. compiled download or compiled from github then its ./lib directory
// might not be in the search path. Add it if so.
u8 *libdir = strdup(LLVM_LIBDIR);
- if (plusplus_mode && strlen(libdir) &&
- strncmp(libdir, "/usr", 4) && strncmp(libdir, "/lib", 4)) {
+ if (plusplus_mode && strlen(libdir) && strncmp(libdir, "/usr", 4) &&
+ strncmp(libdir, "/lib", 4)) {
cc_params[cc_par_cnt++] = "-rpath";
cc_params[cc_par_cnt++] = libdir;