Author: tfaber
Date: Sat Aug 29 14:35:02 2015
New Revision: 68860
URL:
http://svn.reactos.org/svn/reactos?rev=68860&view=rev
Log:
[NTOS]
- Fix GCC build
Modified:
trunk/reactos/ntoskrnl/ke/profobj.c
Modified: trunk/reactos/ntoskrnl/ke/profobj.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/ntoskrnl/ke/profobj.c?rev=…
==============================================================================
--- trunk/reactos/ntoskrnl/ke/profobj.c [iso-8859-1] (original)
+++ trunk/reactos/ntoskrnl/ke/profobj.c [iso-8859-1] Sat Aug 29 14:35:02 2015
@@ -331,8 +331,8 @@
/* Get the Pointer to the Bucket Value representing this Program Counter */
BucketValue = (PULONG)((ULONG_PTR)Profile->Buffer +
- ((ProgramCounter - (ULONG_PTR)Profile->RangeBase)
- >> Profile->BucketShift) &~ 0x3);
+ (((ProgramCounter - (ULONG_PTR)Profile->RangeBase)
+ >> Profile->BucketShift) &~ 0x3));
/* Increment the value */
(*BucketValue)++;