Author: hpoussin
Date: Sat Oct 17 16:55:50 2009
New Revision: 43531
URL:
http://svn.reactos.org/svn/reactos?rev=43531&view=rev
Log:
Fix warning
Modified:
trunk/reactos/boot/freeldr/freeldr/fs/fat.c
Modified: trunk/reactos/boot/freeldr/freeldr/fs/fat.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/boot/freeldr/freeldr/fs/fa…
==============================================================================
--- trunk/reactos/boot/freeldr/freeldr/fs/fat.c [iso-8859-1] (original)
+++ trunk/reactos/boot/freeldr/freeldr/fs/fat.c [iso-8859-1] Sat Oct 17 16:55:50 2009
@@ -796,7 +796,7 @@
//
// Check if current entry is a directory
//
- if (!FatFileInfo.Attributes & ATTR_DIRECTORY)
+ if (!(FatFileInfo.Attributes & ATTR_DIRECTORY))
{
MmFreeMemory(FatFileInfo.FileFatChain);
return ENOTDIR;