mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-11 17:51:32 +00:00
fix instrumentation type display
This commit is contained in:
@ -1364,17 +1364,17 @@ int main(int argc, char **argv, char **envp) {
|
||||
|
||||
if (clang_mode) {
|
||||
|
||||
instrument_mode = CLANG;
|
||||
instrument_mode = INSTRUMENT_CLANG;
|
||||
|
||||
} else {
|
||||
|
||||
instrument_mode = GCC;
|
||||
instrument_mode = INSTRUMENT_GCC;
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
if (compiler_mode == CLANG) { instrument_mode = CLANG; }
|
||||
if (compiler_mode == CLANG) { instrument_mode = INSTRUMENT_CLANG; }
|
||||
|
||||
if (argc < 2 || strncmp(argv[1], "-h", 2) == 0) {
|
||||
|
||||
|
Reference in New Issue
Block a user