From c9e610680b459169c3bb17db69bfbbd80b16a809 Mon Sep 17 00:00:00 2001 From: mgaertner Date: Fri, 7 Sep 2012 12:25:44 +0000 Subject: [PATCH] mtprocs: fixed 64bit windows compilation git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@2508 8e941d3f-bd1b-0410-a28a-d453659cc2b4 --- 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 c2f7ddfd5..ee46b7399 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