print the file name with variable behavior

Because queue/.state/variable_behavior was removed, print file name in
case some users still want the information.
This commit is contained in:
Kuang-che Wu
2025-04-12 05:26:11 +00:00
parent dee51213a7
commit 03169b2b67

View File

@ -592,11 +592,11 @@ u8 calibrate_case(afl_state_t *afl, struct queue_entry *q, u8 *use_mem,
// note: from_queue seems to only be set during initialization // note: from_queue seems to only be set during initialization
if (afl->afl_env.afl_no_ui || from_queue) { if (afl->afl_env.afl_no_ui || from_queue) {
WARNF("instability detected during calibration"); WARNF("instability detected during calibration: %s", q->fname);
} else if (afl->debug) { } else if (afl->debug) {
DEBUGF("instability detected during calibration\n"); DEBUGF("instability detected during calibration: %s\n", q->fname);
} }