Commit db05fe33 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

taskmgr: Fix spelling of the SYSTEM_PERFORMANCE_INFORMATION.MmTotalCommittedPages field.

parent 9efb7b71
...@@ -678,7 +678,7 @@ ULONG PerfDataGetCommitChargeTotalK(void) ...@@ -678,7 +678,7 @@ ULONG PerfDataGetCommitChargeTotalK(void)
EnterCriticalSection(&PerfDataCriticalSection); EnterCriticalSection(&PerfDataCriticalSection);
Total = SystemPerfInfo.MmTotalCommitedPages; Total = SystemPerfInfo.MmTotalCommittedPages;
PageSize = SystemBasicInfo.uPageSize; PageSize = SystemBasicInfo.uPageSize;
LeaveCriticalSection(&PerfDataCriticalSection); LeaveCriticalSection(&PerfDataCriticalSection);
......
...@@ -183,7 +183,7 @@ typedef struct _SYSTEM_PERFORMANCE_INFORMATION ...@@ -183,7 +183,7 @@ typedef struct _SYSTEM_PERFORMANCE_INFORMATION
ULONG IoWriteOperationCount; ULONG IoWriteOperationCount;
ULONG IoOtherOperationCount; ULONG IoOtherOperationCount;
ULONG MmAvailablePages; ULONG MmAvailablePages;
ULONG MmTotalCommitedPages; ULONG MmTotalCommittedPages;
ULONG MmTotalCommitLimit; ULONG MmTotalCommitLimit;
ULONG MmPeakLimit; ULONG MmPeakLimit;
ULONG PageFaults; ULONG PageFaults;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment