diff options
author | van Hauser <vh@thc.org> | 2020-03-09 08:30:28 +0100 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-03-09 08:30:28 +0100 |
commit | 36ce9c1fb977eb6e2b0cd35846457ff0af045b99 (patch) | |
tree | 967ae76207e93f50bb7976fcfb47bc061f09820b /src/afl-fuzz.c | |
parent | 0581f6ec00dbca592582c0bd23c82de524df7a03 (diff) | |
download | afl++-36ce9c1fb977eb6e2b0cd35846457ff0af045b99.tar.gz |
more code format
Diffstat (limited to 'src/afl-fuzz.c')
-rw-r--r-- | src/afl-fuzz.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/afl-fuzz.c b/src/afl-fuzz.c index 12c7853c..778ada9a 100644 --- a/src/afl-fuzz.c +++ b/src/afl-fuzz.c @@ -119,7 +119,8 @@ static void usage(u8* argv0, int more_help) { " if using QEMU, just use -c 0.\n\n" "Fuzzing behavior settings:\n" - " -N - do not unlink the fuzzing input file (only for devices etc.!)\n" + " -N - do not unlink the fuzzing input file (only for " + "devices etc.!)\n" " -d - quick & dirty mode (skips deterministic steps)\n" " -n - fuzz without instrumentation (dumb mode)\n" " -x dir - optional fuzzer dictionary (see README.md, its really " @@ -752,8 +753,7 @@ int main(int argc, char** argv, char** envp) { if (get_afl_env("AFL_AUTORESUME")) { autoresume = 1; - if (in_place_resume) - SAYF("AFL_AUTORESUME has no effect for '-i -'"); + if (in_place_resume) SAYF("AFL_AUTORESUME has no effect for '-i -'"); } |