make llvm_mode pcguard instrumentation collision free

This commit is contained in:
van Hauser
2020-06-25 20:09:56 +02:00
parent 633a3feab9
commit 8d5eb9487d
3 changed files with 7 additions and 2 deletions

View File

@ -569,7 +569,7 @@ void afl_fsrv_start(afl_forkserver_t *fsrv, char **argv,
if (unlikely(tmp_map_size % 8)) {
// should not happen
WARNF("Target reported non-aligned map size of %ud", tmp_map_size);
WARNF("Target reported non-aligned map size of %u", tmp_map_size);
tmp_map_size = (((tmp_map_size + 8) >> 3) << 3);
}