mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
Fix difference in signedness warning
svn path=/trunk/; revision=24037
This commit is contained in:
parent
ac14f5a033
commit
63346a8dda
1 changed files with 1 additions and 1 deletions
|
@ -692,7 +692,7 @@ KiSelectReadyThread(IN KPRIORITY Priority,
|
||||||
if (!PrioritySet) return NULL;
|
if (!PrioritySet) return NULL;
|
||||||
|
|
||||||
/* Get the highest priority possible */
|
/* Get the highest priority possible */
|
||||||
BitScanReverse(&HighPriority, PrioritySet);
|
BitScanReverse((PULONG)&HighPriority, PrioritySet);
|
||||||
ASSERT((PrioritySet & PRIORITY_MASK(HighPriority)) != 0);
|
ASSERT((PrioritySet & PRIORITY_MASK(HighPriority)) != 0);
|
||||||
HighPriority += PriorityMask;
|
HighPriority += PriorityMask;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue