Francois Gouget : taskmgr: Fix spelling of the SYSTEM_PERFORMANCE_INFORMATION. MmTotalCommittedPages field.

Alexandre Julliard julliard at wine.codeweavers.com
Tue Nov 7 10:16:47 CST 2006


Module: wine
Branch: master
Commit: db05fe33a28eb057c0e6acfb5383649d6ae6f995
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=db05fe33a28eb057c0e6acfb5383649d6ae6f995

Author: Francois Gouget <fgouget at free.fr>
Date:   Tue Nov  7 00:38:24 2006 +0100

taskmgr: Fix spelling of the SYSTEM_PERFORMANCE_INFORMATION.MmTotalCommittedPages field.

---

 programs/taskmgr/perfdata.c |    2 +-
 programs/taskmgr/perfdata.h |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/programs/taskmgr/perfdata.c b/programs/taskmgr/perfdata.c
index 6a88fa3..85001b3 100644
--- a/programs/taskmgr/perfdata.c
+++ b/programs/taskmgr/perfdata.c
@@ -678,7 +678,7 @@ ULONG PerfDataGetCommitChargeTotalK(void
 
     EnterCriticalSection(&PerfDataCriticalSection);
 
-    Total = SystemPerfInfo.MmTotalCommitedPages;
+    Total = SystemPerfInfo.MmTotalCommittedPages;
     PageSize = SystemBasicInfo.uPageSize;
 
     LeaveCriticalSection(&PerfDataCriticalSection);
diff --git a/programs/taskmgr/perfdata.h b/programs/taskmgr/perfdata.h
index 3e803d4..1011461 100644
--- a/programs/taskmgr/perfdata.h
+++ b/programs/taskmgr/perfdata.h
@@ -183,7 +183,7 @@ typedef struct _SYSTEM_PERFORMANCE_INFOR
 	ULONG		IoWriteOperationCount;
 	ULONG		IoOtherOperationCount;
 	ULONG		MmAvailablePages;
-	ULONG		MmTotalCommitedPages;
+	ULONG		MmTotalCommittedPages;
 	ULONG		MmTotalCommitLimit;
 	ULONG		MmPeakLimit;
 	ULONG		PageFaults;




More information about the wine-cvs mailing list