[CDFS]: Fix typo spotted by Alexander and confirmed by Pierre (see rev 62779).

svn path=/trunk/; revision=62807
This commit is contained in:
Hermès Bélusca-Maïto 2014-04-19 15:17:28 +00:00
parent 9e1f355c66
commit f4dcf7950b

View file

@ -130,7 +130,7 @@ CdfsFCBIsDirectory(PFCB Fcb)
BOOLEAN
CdfsFCBIsRoot(PFCB Fcb)
{
return (Fcb->PathName.Length = sizeof(WCHAR) && Fcb->PathName.Buffer[0] == L'\\');
return (Fcb->PathName.Length == sizeof(WCHAR) && Fcb->PathName.Buffer[0] == L'\\');
}