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
|
static bool
|
||||||
get_mem_values (DWORD dwProcessId, size_t &vmsize, unsigned long &vmrss,
|
get_mem_values (DWORD dwProcessId, size_t &vmsize, size_t &vmrss,
|
||||||
unsigned long &vmtext, unsigned long &vmdata,
|
size_t &vmtext, size_t &vmdata, size_t &vmlib, size_t &vmshare)
|
||||||
unsigned long &vmlib, unsigned long &vmshare)
|
|
||||||
{
|
{
|
||||||
bool res = false;
|
bool res = false;
|
||||||
NTSTATUS status;
|
NTSTATUS status;
|
||||||
|
|
Loading…
Reference in New Issue