mirror of https://github.com/acidanthera/audk.git
Fix a typo when checking the 16-bit alignment of Unicode String.
(based on FatPkg commit 603a10ca818a089b8af594e0f1ef7e1a3e42d938) [jordan.l.justen@intel.com: Use script to relicense to 2-clause BSD] Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Jordan Justen <jordan.l.justen@intel.com> Acked-by: Mark Doran <mark.doran@intel.com> Acked-by: Laszlo Ersek <lersek@redhat.com>
This commit is contained in:
parent
c22c8322e9
commit
8288dd3ef8
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue