- Fix GCC build

svn path=/trunk/; revision=68860
This commit is contained in:
Thomas Faber 2015-08-29 14:35:02 +00:00
parent e693a9b767
commit 6d331859f3

View file

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