Gerald Pfeifer : kernel32: Fix signedess for FreeBSD-specific implementation of GetSystemInfo().
2 Oct
2007
2 Oct
'07
11:52 a.m.
Module: wine Branch: master Commit: d328c07bd3344ec8b63a90b3c5f84e719d51468f URL: http://source.winehq.org/git/wine.git/?a=commit;h=d328c07bd3344ec8b63a90b3c5... Author: Gerald Pfeifer <gerald(a)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 );
6743
Age (days ago)
6743
Last active (days ago)
0 comments
1 participants
participants (1)
-
Alexandre Julliard