From 2404c9e445f001476bffc423304fe44e5b7a742a Mon Sep 17 00:00:00 2001 From: mattias Date: Fri, 7 Sep 2012 12:26:40 +0000 Subject: [PATCH] mtprocs: fixed 64bit windows compilation git-svn-id: trunk@38555 - --- components/multithreadprocs/mtpcpu.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/multithreadprocs/mtpcpu.pas b/components/multithreadprocs/mtpcpu.pas index c2f7ddfd50..ee46b7399c 100644 --- a/components/multithreadprocs/mtpcpu.pas +++ b/components/multithreadprocs/mtpcpu.pas @@ -46,7 +46,7 @@ function GetSystemThreadCount: integer; //returns total number of processors available to system including logical hyperthreaded processors var i: Integer; - ProcessAffinityMask, SystemAffinityMask: DWORD; + ProcessAffinityMask, SystemAffinityMask: DWORD_PTR; Mask: DWORD; SystemInfo: SYSTEM_INFO; begin