Author: jimtabor
Date: Sat Jan 27 01:28:47 2007
New Revision: 25642
URL:
http://svn.reactos.org/svn/reactos?rev=25642&view=rev
Log:
Fix warning.
Modified:
trunk/reactos/ntoskrnl/ke/thrdschd.c
Modified: trunk/reactos/ntoskrnl/ke/thrdschd.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/ke/thrdschd.c?rev…
==============================================================================
--- trunk/reactos/ntoskrnl/ke/thrdschd.c (original)
+++ trunk/reactos/ntoskrnl/ke/thrdschd.c Sat Jan 27 01:28:47 2007
@@ -477,7 +477,7 @@
else
{
/* Set the idle summary */
- InterlockedOr(&KiIdleSummary, Prcb->SetMember);
+ InterlockedOr((PLONG)&KiIdleSummary, Prcb->SetMember);
/* Schedule the idle thread */
NextThread = Prcb->IdleThread;