Skip to content
Snippets Groups Projects
Commit 9498ada7 authored by Gerald Pfeifer's avatar Gerald Pfeifer Committed by Alexandre Julliard
Browse files

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

parent d328c07b
No related merge requests found
......@@ -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];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment