Module: wine Branch: master Commit: fa23ffd26a91d62bd44c49ea39aa8cb15a8ab1a5 URL: https://source.winehq.org/git/wine.git/?a=commit;h=fa23ffd26a91d62bd44c49ea3...
Author: Alexandre Julliard julliard@winehq.org Date: Tue Mar 2 12:04:19 2021 +0100
dbgeng: Use the correct machine type for ARM.
Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/dbgeng/dbgeng.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/dbgeng/dbgeng.c b/dlls/dbgeng/dbgeng.c index f24b04d0864..c857456b51c 100644 --- a/dlls/dbgeng/dbgeng.c +++ b/dlls/dbgeng/dbgeng.c @@ -3035,7 +3035,7 @@ static HRESULT STDMETHODCALLTYPE debugcontrol_IsPointer64Bit(IDebugControl2 *ifa switch (target->cpu_type) { case IMAGE_FILE_MACHINE_I386: - case IMAGE_FILE_MACHINE_ARM: + case IMAGE_FILE_MACHINE_ARMNT: hr = S_FALSE; break; case IMAGE_FILE_MACHINE_IA64: