mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-23 21:43:45 +00:00
regress: fix compilation warning in invalid_read_in_cpu_tb_exec.c
This commit is contained in:
parent
69d976375e
commit
10519d6864
1 changed files with 2 additions and 1 deletions
|
@ -1,7 +1,8 @@
|
|||
#include <inttypes.h>
|
||||
#include <unicorn/unicorn.h>
|
||||
|
||||
static void hook_block(uc_engine *uc, uint64_t address, uint32_t size, void *user_data) {
|
||||
printf("hook_block(%p, %lx, %d, %p)\n", uc, address, size, user_data);
|
||||
printf("hook_block(%p, %"PRIx64", %d, %p)\n", uc, address, size, user_data);
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue