mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-03 04:13:31 +00:00
Fix difference in signedness warning
svn path=/trunk/; revision=24037
This commit is contained in:
@@ -692,7 +692,7 @@ KiSelectReadyThread(IN KPRIORITY Priority,
|
||||
if (!PrioritySet) return NULL;
|
||||
|
||||
/* Get the highest priority possible */
|
||||
BitScanReverse(&HighPriority, PrioritySet);
|
||||
BitScanReverse((PULONG)&HighPriority, PrioritySet);
|
||||
ASSERT((PrioritySet & PRIORITY_MASK(HighPriority)) != 0);
|
||||
HighPriority += PriorityMask;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user