Cygwin: get_mem_values: Fix prototype
Incomplete change unsigned long -> size_t was only visible on 32 bit, sigh. Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
This commit is contained in:
parent
09c114d7e2
commit
71b4e3b336
|
@ -1432,9 +1432,8 @@ out:
|
|||
}
|
||||
|
||||
static bool
|
||||
get_mem_values (DWORD dwProcessId, size_t &vmsize, unsigned long &vmrss,
|
||||
unsigned long &vmtext, unsigned long &vmdata,
|
||||
unsigned long &vmlib, unsigned long &vmshare)
|
||||
get_mem_values (DWORD dwProcessId, size_t &vmsize, size_t &vmrss,
|
||||
size_t &vmtext, size_t &vmdata, size_t &vmlib, size_t &vmshare)
|
||||
{
|
||||
bool res = false;
|
||||
NTSTATUS status;
|
||||
|
|
Loading…
Reference in New Issue