From ee409d18a6678c3f5948f51db8964148cae021dc Mon Sep 17 00:00:00 2001 From: vanhauser-thc Date: Mon, 25 Apr 2022 10:14:04 +0200 Subject: [PATCH] code format --- src/afl-cc.c | 4 ++-- 1 file 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;