fix issue in describe_op showing time inside src

This commit is contained in:
Andrea Fioraldi
2020-05-12 09:20:02 +02:00
parent b920cd2f23
commit 8bb10c3bf1

View File

@ -437,13 +437,13 @@ u8 *describe_op(afl_state_t *afl, u8 hnb) {
sprintf(ret, "src:%06u", afl->current_entry);
sprintf(ret + strlen(ret), ",time:%llu", get_cur_time() - afl->start_time);
if (afl->splicing_with >= 0) {
sprintf(ret + strlen(ret), "+%06d", afl->splicing_with);
}
sprintf(ret + strlen(ret), ",time:%llu", get_cur_time() - afl->start_time);
sprintf(ret + strlen(ret), ",op:%s", afl->stage_short);