diff options
author | vanhauser-thc <vh@thc.org> | 2022-03-01 20:01:12 +0100 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2022-03-01 20:01:12 +0100 |
commit | 7e67545b9de14ae6e425d184581bec93ccf84c6a (patch) | |
tree | 543dfd5a2b548529da7fffa6c74b43ecf0e95df3 /src | |
parent | d84a8da1e9b68f03597f17a9c6c53503551fcb51 (diff) | |
download | afl++-7e67545b9de14ae6e425d184581bec93ccf84c6a.tar.gz |
code format
Diffstat (limited to 'src')
-rw-r--r-- | src/afl-fuzz.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/afl-fuzz.c b/src/afl-fuzz.c index 6b177274..a3f57c1e 100644 --- a/src/afl-fuzz.c +++ b/src/afl-fuzz.c @@ -167,7 +167,8 @@ static void usage(u8 *argv0, int more_help) { " See docs/README.MOpt.md\n" " -c program - enable CmpLog by specifying a binary compiled for " "it.\n" - " if using QEMU/FRIDA or if you the fuzzing target is compiled" + " if using QEMU/FRIDA or if you the fuzzing target is " + "compiled" " for CmpLog then just use -c 0.\n" " -l cmplog_opts - CmpLog configuration values (e.g. \"2AT\"):\n" " 1=small files, 2=larger files (default), 3=all " @@ -1459,7 +1460,8 @@ int main(int argc, char **argv_orig, char **envp) { if (!afl->use_banner) { afl->use_banner = argv[optind]; } - if (afl->shm.cmplog_mode && (!strcmp("-", afl->cmplog_binary) || !strcmp("0", afl->cmplog_binary))) { + if (afl->shm.cmplog_mode && + (!strcmp("-", afl->cmplog_binary) || !strcmp("0", afl->cmplog_binary))) { afl->cmplog_binary = argv[optind]; |