=?UTF-8?Q?Andr=C3=A9=20Hentschel=20?=: ntdll: Use the correct arch value for ARM64.

Alexandre Julliard julliard at wine.codeweavers.com
Thu May 21 07:24:23 CDT 2015


Module: wine
Branch: master
Commit: 74ef3af73dc5d7b4887ed4504bd61ad69d464135
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=74ef3af73dc5d7b4887ed4504bd61ad69d464135

Author: André Hentschel <nerv at dawncrow.de>
Date:   Wed May 20 14:43:09 2015 +0200

ntdll: Use the correct arch value for ARM64.

---

 dlls/ntdll/nt.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/ntdll/nt.c b/dlls/ntdll/nt.c
index 3601c0f..550a91a 100644
--- a/dlls/ntdll/nt.c
+++ b/dlls/ntdll/nt.c
@@ -1147,7 +1147,7 @@ static inline void get_cpuinfo(SYSTEM_CPU_INFORMATION* info)
 static inline void get_cpuinfo(SYSTEM_CPU_INFORMATION* info)
 {
     info->Level = 8;
-    info->Architecture = PROCESSOR_ARCHITECTURE_ARM;
+    info->Architecture = PROCESSOR_ARCHITECTURE_ARM64;
 }
 
 #endif /* End architecture specific feature detection for CPUs */




More information about the wine-cvs mailing list