[REACTOS] Replace comparison against TRUE with comparison against FALSE
[reactos.git] / reactos / drivers / ksfilter / ks / misc.c
index 4c814d7..f0ce95e 100644 (file)
@@ -53,7 +53,7 @@ KspForwardIrpSynchronousCompletion(
     IN PIRP  Irp,
     IN PVOID  Context)
 {
-    if (Irp->PendingReturned == TRUE)
+    if (Irp->PendingReturned != FALSE)
     {
         KeSetEvent ((PKEVENT) Context, IO_NO_INCREMENT, FALSE);
     }