Huw Davies : wow64: Fix another ARM32 machine type.
Module: wine Branch: master Commit: d6dce27e4244e61b2e81c323003db63af045abdc URL: https://gitlab.winehq.org/wine/wine/-/commit/d6dce27e4244e61b2e81c323003db63... Author: Huw Davies <huw(a)codeweavers.com> Date: Fri Aug 26 07:24:24 2022 +0100 wow64: Fix another ARM32 machine type. --- dlls/wow64/syscall.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/wow64/syscall.c b/dlls/wow64/syscall.c index 0f9e64fd53b..eb48f066b92 100644 --- a/dlls/wow64/syscall.c +++ b/dlls/wow64/syscall.c @@ -391,7 +391,7 @@ static DWORD get_syscall_num( const BYTE *syscall ) id = *(DWORD *)(syscall + 1); break; - case IMAGE_FILE_MACHINE_ARM: + case IMAGE_FILE_MACHINE_ARMNT: if (*(WORD *)syscall == 0xb40f) { DWORD inst = *(DWORD *)((WORD *)syscall + 1);
participants (1)
-
Alexandre Julliard