kernel32: Fix types for the FreeBSD implementation of GlobalMemoryStatusEx().

This commit is contained in:
Gerald Pfeifer 2007-09-29 16:02:02 +02:00 committed by Alexandre Julliard
parent d328c07bd3
commit 9498ada7a2
1 changed files with 2 additions and 1 deletions

View File

@ -1206,7 +1206,8 @@ BOOL WINAPI GlobalMemoryStatusEx( LPMEMORYSTATUSEX lpmemex )
FILE *f;
#elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__NetBSD__)
unsigned long val;
int size_sys, mib[2];
int mib[2];
size_t size_sys;
#elif defined(__APPLE__)
unsigned int val;
int mib[2];