1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Fix warning

This commit is contained in:
Maxime Chevalier-Boisvert 2020-11-02 12:36:52 -05:00 committed by Alan Wu
parent 68b0f69a0d
commit ba92d40d9b

View file

@ -57,7 +57,7 @@ void print_int(codeblock_t* cb, x86opnd_t opnd)
static void print_ptr_cfun(void* val)
{
printf("%llX\n", val);
printf("%p\n", val);
}
void print_ptr(codeblock_t* cb, x86opnd_t opnd)