mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-19 08:02:15 -06:00
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
1 changed files with 1 additions and 1 deletions
|
@ -2275,7 +2275,7 @@ void helper_pmon (int function)
|
||||||
break;
|
break;
|
||||||
case 158:
|
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);
|
printf("%s", fmt);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue