Gerald Pfeifer : kernel32: Fix signedess for FreeBSD-specific implementation of GetSystemInfo().

Alexandre Julliard julliard at winehq.org
Tue Oct 2 06:52:40 CDT 2007


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

Author: Gerald Pfeifer <gerald at pfeifer.com>
Date:   Sat Sep 29 15:50:28 2007 +0200

kernel32: Fix signedess for FreeBSD-specific implementation of GetSystemInfo().

---

 dlls/kernel32/cpu.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/dlls/kernel32/cpu.c b/dlls/kernel32/cpu.c
index 7567af5..c7d366e 100644
--- a/dlls/kernel32/cpu.c
+++ b/dlls/kernel32/cpu.c
@@ -641,7 +641,8 @@ VOID WINAPI GetSystemInfo(
         }
 #elif defined(__FreeBSD__)
 	{
-	int ret, len, num;
+	int ret, num;
+	unsigned len;
 
         get_cpuinfo( &cachedsi );
 




More information about the wine-cvs mailing list