Skip to content

Commit

Permalink
Fix a typo when checking the 16-bit alignment of Unicode String.
Browse files Browse the repository at this point in the history
git-svn-id: https://fat-driver2.tianocore.org/svn/fat-driver2/trunk@26 65ba2f78-6c18-0410-a7b4-885970cf29fa
  • Loading branch information
qhuang8 committed May 5, 2008
1 parent 1669fee commit 4a3905c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FatPkg/EnhancedFatDxe/UnicodeCollation.c
Expand Up @@ -275,7 +275,7 @@ FatFatToStr (
{
ASSERT (Fat != NULL);
ASSERT (String != NULL);
ASSERT (((UINTN) String & 0x01) != 0);
ASSERT (((UINTN) String & 0x01) == 0);
ASSERT (mUnicodeCollationInterface != NULL);

mUnicodeCollationInterface->FatToStr (mUnicodeCollationInterface, FatSize, Fat, String);
Expand Down

0 comments on commit 4a3905c

Please sign in to comment.