diff options
author | vanhauser-thc <vh@thc.org> | 2021-02-22 18:22:09 +0100 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2021-02-22 18:22:09 +0100 |
commit | 745bc083d144a31981b3686d68bc34777758b359 (patch) | |
tree | f3fba9ef8ba1f2f52fcd413286d60bacb3de22fb | |
parent | 7674dac1a16a9963e22eb628fdbd409befe19979 (diff) | |
download | afl++-745bc083d144a31981b3686d68bc34777758b359.tar.gz |
fix error msg
-rw-r--r-- | src/afl-cc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/afl-cc.c b/src/afl-cc.c index 783cf23e..c3910e6d 100644 --- a/src/afl-cc.c +++ b/src/afl-cc.c @@ -1802,8 +1802,8 @@ int main(int argc, char **argv, char **envp) { if (instrument_opt_mode && instrument_mode != INSTRUMENT_CLASSIC && instrument_mode != INSTRUMENT_CFG) FATAL( - "CTX and NGRAM instrumentation options can only be used with CFG " - "(recommended) and CLASSIC instrumentation modes!"); + "CTX and NGRAM instrumentation options can only be used with LLVM and " + "CFG or CLASSIC instrumentation modes!"); if (getenv("AFL_LLVM_SKIP_NEVERZERO") && getenv("AFL_LLVM_NOT_ZERO")) FATAL( |