[REACTOS] Replace comparison against TRUE with comparison against FALSE
[reactos.git] / reactos / drivers / filesystems / cdfs / dirctl.c
index f49bd04..c3d2878 100644 (file)
@@ -189,7 +189,7 @@ CdfsFindFile(PDEVICE_EXTENSION DeviceExt,
         IsRoot = TRUE;
     }
 
-    if (IsRoot == TRUE)
+    if (IsRoot != FALSE)
     {
         StreamOffset.QuadPart = (LONGLONG)DeviceExt->CdInfo.RootStart * (LONGLONG)BLOCKSIZE;
         DirSize = DeviceExt->CdInfo.RootSize;