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)++;