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:
Corinna Vinschen 2018-08-17 20:40:18 +02:00
parent 09c114d7e2
commit 71b4e3b336
1 changed files with 2 additions and 3 deletions

View File

@ -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;