From: Thomas Faber Date: Sat, 29 Aug 2015 14:35:02 +0000 (+0000) Subject: [NTOS] X-Git-Tag: ReactOS-0.4.0~1165 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=6d331859f30954ed48b1d39f09e67ece3689ea1e [NTOS] - Fix GCC build svn path=/trunk/; revision=68860 --- diff --git a/reactos/ntoskrnl/ke/profobj.c b/reactos/ntoskrnl/ke/profobj.c index 6be1deedb60..7c2b213e893 100644 --- a/reactos/ntoskrnl/ke/profobj.c +++ b/reactos/ntoskrnl/ke/profobj.c @@ -331,8 +331,8 @@ KiParseProfileList(IN PKTRAP_FRAME TrapFrame, /* 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)++;