regress: fix some compilation warnings on printf format

This commit is contained in:
Nguyen Anh Quynh
2016-01-10 23:45:02 +08:00
parent a0aa26d6ee
commit 32bca0bd02
3 changed files with 3 additions and 3 deletions

View File

@@ -65,7 +65,7 @@ int loop_count = 0;
// This hook is used to show that code is executing in the emulator.
static void mips_codehook(uc_engine *uc, uint64_t address, uint32_t size, void *user_data)
{
printf("Code: %llX\n", address);
printf("Code: %"PRIx64"\n", address);
}