diff options
author | vanhauser-thc <vh@thc.org> | 2024-01-19 10:28:39 +0100 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2024-01-19 10:28:39 +0100 |
commit | 660b697ed9d1d14987ffba4bf80ad4cbe6f29f95 (patch) | |
tree | f6c1dcdec89093a5fcf73c51c6729b71ad0926a2 | |
parent | cefc9a00bfdd789261157874236399e95c244907 (diff) | |
download | afl++-660b697ed9d1d14987ffba4bf80ad4cbe6f29f95.tar.gz |
typos
-rw-r--r-- | src/afl-cc.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/afl-cc.c b/src/afl-cc.c index 192c5423..cda964df 100644 --- a/src/afl-cc.c +++ b/src/afl-cc.c @@ -1180,11 +1180,11 @@ void mode_final_checkout(aflcc_state_t *aflcc, int argc, char **argv) { switch (aflcc->compiler_mode) { case GCC: - if (!aflcc->have_gcc) FATAL("afl-gcc not available on your platform!"); + if (!aflcc->have_gcc) FATAL("afl-gcc is not available on your platform!"); break; case CLANG: if (!aflcc->have_clang) - FATAL("afl-clang not available on your platform!"); + FATAL("afl-clang is not available on your platform!"); break; case LLVM: if (!aflcc->have_llvm) @@ -2538,11 +2538,11 @@ static void maybe_usage(aflcc_state_t *aflcc, int argc, char **argv) { "MODES: NCC PERSIST DICT LAF " "CMPLOG SELECT\n" " [LLVM] LLVM: %s%s\n" - " PCGUARD %s yes yes module yes yes " + " PCGUARD %s yes yes module yes yes " "yes\n" - " NATIVE AVAILABLE no yes no no " + " NATIVE AVAILABLE no yes no no " "part. yes\n" - " CLASSIC %s no yes module yes yes " + " CLASSIC %s no yes module yes yes " "yes\n" " - NORMAL\n" " - CALLER\n" |