taskmgr: Fix spelling of the SYSTEM_PERFORMANCE_INFORMATION.MmTotalCommittedPages field.

This commit is contained in:
Francois Gouget 2006-11-07 00:38:24 +01:00 committed by Alexandre Julliard
parent 9efb7b71ba
commit db05fe33a2
2 changed files with 2 additions and 2 deletions

View file

@ -678,7 +678,7 @@ ULONG PerfDataGetCommitChargeTotalK(void)
EnterCriticalSection(&PerfDataCriticalSection);
Total = SystemPerfInfo.MmTotalCommitedPages;
Total = SystemPerfInfo.MmTotalCommittedPages;
PageSize = SystemBasicInfo.uPageSize;
LeaveCriticalSection(&PerfDataCriticalSection);

View file

@ -183,7 +183,7 @@ typedef struct _SYSTEM_PERFORMANCE_INFORMATION
ULONG IoWriteOperationCount;
ULONG IoOtherOperationCount;
ULONG MmAvailablePages;
ULONG MmTotalCommitedPages;
ULONG MmTotalCommittedPages;
ULONG MmTotalCommitLimit;
ULONG MmPeakLimit;
ULONG PageFaults;