This commit is contained in:
vanhauser-thc
2024-05-16 14:40:53 +02:00
parent 5a0a33e52a
commit d4071b0fe4
2 changed files with 42 additions and 10 deletions

View File

@ -3080,13 +3080,13 @@ stop_fuzzing:
struct queue_entry *q = afl->queue_buf[k];
fprintf(stderr,
"item=%u fname=%s len=%u exec_us=%llu has_new_cov=%u "
"var_behavior=%u "
"favored=%u fs_redundant=%u disabled=%u bitmap_size=%u "
"fuzz_level=%u "
"mother=%d perf_score=%.2f weight=%.2f score=%u\n",
"var_behavior=%u favored=%u fs_redundant=%u disabled=%u "
"bitmap_size=%u "
"fuzz_level=%u was_fuzzed=%u mother=%d perf_score=%.2f "
"weight=%.2f score=%u\n",
k, q->fname, q->len, q->exec_us, q->has_new_cov,
q->var_behavior, q->favored, q->fs_redundant, q->disabled,
q->bitmap_size, q->fuzz_level,
q->bitmap_size, q->fuzz_level, q->was_fuzzed,
q->mother == NULL ? -1 : (int)q->mother->id, q->perf_score,
q->weight, q->score);