include: Fix __int64 definition for ARM64

André Hentschel nerv at dawncrow.de
Fri Jan 18 10:51:46 CST 2013


That's the reason for all these warnings, missed it...
---
 include/wine/port.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/wine/port.h b/include/wine/port.h
index 1bcc0e5..bd6f513 100644
--- a/include/wine/port.h
+++ b/include/wine/port.h
@@ -55,7 +55,7 @@
  */
 
 #if !defined(_MSC_VER) && !defined(__int64)
-#  if defined(__x86_64__) || defined(_WIN64)
+#  if defined(__x86_64__) || defined(__aarch64__) || defined(_WIN64)
 #    define __int64 long
 #  else
 #    define __int64 long long
-- 
1.8.0


-- 

Best Regards, André Hentschel


More information about the wine-patches mailing list