target-mips: Fix type cast for w64 (uintptr_t)
This changes nothing for other hosts. Signed-off-by: Stefan Weil <sw@weilnetz.de>
This commit is contained in:
parent
58b9630d7e
commit
b69e48a84d
@ -2275,7 +2275,7 @@ void helper_pmon (int function)
|
||||
break;
|
||||
case 158:
|
||||
{
|
||||
unsigned char *fmt = (void *)(unsigned long)env->active_tc.gpr[4];
|
||||
unsigned char *fmt = (void *)(uintptr_t)env->active_tc.gpr[4];
|
||||
printf("%s", fmt);
|
||||
}
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user