mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-18 20:48:07 +00:00
Various fixes for warnings, extends #1818
This commit is contained in:
@ -2995,7 +2995,7 @@ havoc_stage:
|
||||
// fprintf(stderr, "val: %u-%u = %ld\n", off, off2, val);
|
||||
|
||||
char buf[20];
|
||||
snprintf(buf, sizeof(buf), "%lld", val);
|
||||
snprintf(buf, sizeof(buf), "%" PRId64, val);
|
||||
|
||||
// fprintf(stderr, "BEFORE: %s\n", out_buf);
|
||||
|
||||
|
@ -2665,7 +2665,7 @@ static u8 rtn_fuzz(afl_state_t *afl, u32 key, u8 *orig_buf, u8 *buf, u8 *cbuf,
|
||||
|
||||
}
|
||||
|
||||
rtn_fuzz_next_iter:
|
||||
// rtn_fuzz_next_iter:
|
||||
afl->stage_cur++;
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user