Skip to content
Snippets Groups Projects
Commit 2ca05d49 authored by Xiaohong Bao's avatar Xiaohong Bao
Browse files

trivial: convert to "unix return"

parent 6531eed0
No related branches found
No related tags found
No related merge requests found
...@@ -114,7 +114,7 @@ U32 LLMemory::getWorkingSetSize() ...@@ -114,7 +114,7 @@ U32 LLMemory::getWorkingSetSize()
{ {
PROCESS_MEMORY_COUNTERS pmc ; PROCESS_MEMORY_COUNTERS pmc ;
U32 ret = 0 ; U32 ret = 0 ;
if (GetProcessMemoryInfo( GetCurrentProcess(), &pmc, sizeof(pmc)) ) if (GetProcessMemoryInfo( GetCurrentProcess(), &pmc, sizeof(pmc)) )
{ {
ret = pmc.WorkingSetSize ; ret = pmc.WorkingSetSize ;
......
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