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); EnterCriticalSection(&PerfDataCriticalSection);
Total = SystemPerfInfo.MmTotalCommitedPages; Total = SystemPerfInfo.MmTotalCommittedPages;
PageSize = SystemBasicInfo.uPageSize; PageSize = SystemBasicInfo.uPageSize;
LeaveCriticalSection(&PerfDataCriticalSection); LeaveCriticalSection(&PerfDataCriticalSection);

View File

@ -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;