[REACTOS] Replace comparison against TRUE with comparison against FALSE
[reactos.git] / reactos / hal / halx86 / acpi / busemul.c
index 71b2aef..17697a4 100644 (file)
@@ -105,7 +105,7 @@ HalpFindBusAddressTranslation(IN PHYSICAL_ADDRESS BusAddress,
     if (!Context) return FALSE;
 
     /* If we have data in the context, then this shouldn't be a new lookup */
-    if ((*Context) && (NextBus == TRUE)) return FALSE;
+    if ((*Context != 0) && (NextBus != FALSE)) return FALSE;
 
     /* Return bus data */
     TranslatedAddress->QuadPart = BusAddress.QuadPart;