diff options
author | David Carlier <devnexen@gmail.com> | 2020-07-09 15:43:05 +0100 |
---|---|---|
committer | David Carlier <devnexen@gmail.com> | 2020-07-09 15:43:05 +0100 |
commit | 90adc2cb853482ae058a4b09719502ec6c3c22b8 (patch) | |
tree | 6c636835dbe7d54a986e1eee7301a08aef3a6a16 /src/afl-fuzz-init.c | |
parent | 7c8d8233966c5f3009710efeb9c9efb50015ebbb (diff) | |
download | afl++-90adc2cb853482ae058a4b09719502ec6c3c22b8.tar.gz |
illumos littlefixes: little typo for cpu binding and
even tough gcc plugin less good than LLVM, clang is more buggy on this os.
Diffstat (limited to 'src/afl-fuzz-init.c')
-rw-r--r-- | src/afl-fuzz-init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/afl-fuzz-init.c b/src/afl-fuzz-init.c index e51b4729..e95ae95f 100644 --- a/src/afl-fuzz-init.c +++ b/src/afl-fuzz-init.c @@ -398,7 +398,7 @@ if (pset_bind(c, P_PID, getpid(), NULL)) { if (cpu_start == afl->cpu_core_count) PFATAL("pset_bind failed for cpu %d, exit", i); - WARNF("pthread_setaffinity failed to CPU %d, trying next CPU", i); + WARNF("pset_bind failed to CPU %d, trying next CPU", i); cpu_start++; goto try ; |