Author: jimtabor Date: Mon Mar 5 20:35:37 2007 New Revision: 26005
URL: http://svn.reactos.org/svn/reactos?rev=26005&view=rev Log: Fix RosBE build
Modified: trunk/reactos/ntoskrnl/ke/bug.c
Modified: trunk/reactos/ntoskrnl/ke/bug.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/ke/bug.c?rev=26005... ============================================================================== --- trunk/reactos/ntoskrnl/ke/bug.c (original) +++ trunk/reactos/ntoskrnl/ke/bug.c Mon Mar 5 20:35:37 2007 @@ -1154,7 +1154,7 @@ _disable();
/* Check the bugcheck count */ - if (!InterlockedDecrement(&KeBugCheckCount)) + if (!InterlockedDecrement((PLONG)&KeBugCheckCount)) { /* There was only one, is the debugger disabled? */ if (!(KdDebuggerEnabled) && !(KdPitchDebugger))