mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
print percentage character for the memory load in debug message (GlobalMemoryStatusEx). Suggested by WaxDragon
svn path=/trunk/; revision=16959
This commit is contained in:
parent
e466431f36
commit
0c3b9e8545
1 changed files with 1 additions and 1 deletions
|
@ -409,7 +409,7 @@ GlobalMemoryStatusEx(LPMEMORYSTATUSEX lpBuffer)
|
|||
SysPerfInfo.AvailablePages) * 100 /
|
||||
SysBasicInfo.NumberOfPhysicalPages;
|
||||
|
||||
DPRINT1("Memory Load: %d\n",lpBuffer->dwMemoryLoad );
|
||||
DPRINT1("Memory Load: %d%%\n",lpBuffer->dwMemoryLoad );
|
||||
|
||||
lpBuffer->ullTotalPhys = SysBasicInfo.NumberOfPhysicalPages *
|
||||
SysBasicInfo.PageSize;
|
||||
|
|
Loading…
Reference in a new issue