Alexandre Julliard : ntdll: Fix pointer cast warnings on 64-bit.

Alexandre Julliard julliard at winehq.org
Fri Jan 9 09:52:04 CST 2009


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

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Thu Jan  8 17:28:45 2009 +0100

ntdll: Fix pointer cast warnings on 64-bit.

---

 dlls/ntdll/virtual.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/ntdll/virtual.c b/dlls/ntdll/virtual.c
index d2610e9..59fc491 100644
--- a/dlls/ntdll/virtual.c
+++ b/dlls/ntdll/virtual.c
@@ -123,7 +123,7 @@ static void *user_space_limit    = (void *)0x7fff0000;  /* top of the user addre
 static void *working_set_limit   = (void *)0x7fff0000;  /* top of the current working set */
 #else
 static UINT page_shift;
-static UINT page_size;
+static UINT_PTR page_size;
 static UINT_PTR page_mask;
 static void *address_space_limit;
 static void *user_space_limit;




More information about the wine-cvs mailing list