Drop unnecessary boolean casts after type refactor

Este commit está contenido en:
2025-09-23 19:17:33 +02:00
padre 9298aef87e
commit 6e10089280
Se han modificado 7 ficheros con 13 adiciones y 13 borrados

Ver fichero

@@ -313,7 +313,7 @@ RTL::BitMap::FindBits(IN PRTL_BITMAP BitMap,
while(BitOffset + Length < BitMapEnd)
{
/* Increment offset */
BitOffset += CountBits(BitMap, BitMap->Size - BitOffset, BitOffset, (BOOLEAN)!SetBits);
BitOffset += CountBits(BitMap, BitMap->Size - BitOffset, BitOffset, !SetBits);
if(BitOffset + Length > BitMapEnd)
{
/* No match found, break loop execution */