This commit is contained in:
vanhauser-thc 2024-01-19 10:28:39 +01:00
parent cefc9a00bf
commit 660b697ed9

View File

@ -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)