Fix compiler warnings

This commit is contained in:
Maxime Chevalier-Boisvert 2020-10-23 16:49:59 -04:00 committed by Alan Wu
parent b761f5c96f
commit 5b6a963b71
2 changed files with 4 additions and 5 deletions

View file

@ -36,7 +36,7 @@ void pop_regs(codeblock_t* cb)
static void print_int_cfun(int64_t val)
{
printf("%lld\n", val);
printf("%lld\n", (long long int)val);
}
void print_int(codeblock_t* cb, x86opnd_t opnd)