diff options
author | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2007-07-06 04:29:38 +0000 |
---|---|---|
committer | klu2 <klu2@6f19259b-4bc3-4df7-8a09-765794883524> | 2007-07-06 04:29:38 +0000 |
commit | 9767823fc9239c342e2ab314f41aa259921d9867 (patch) | |
tree | f46d3383f8d96139c348494a83a78a044bd62371 /MdeModulePkg/Core/Dxe/FwVol/FwVol.c | |
parent | 7d421cff2b114a16e1b0bdc7daad38c7c101c680 (diff) | |
download | edk2-platforms-9767823fc9239c342e2ab314f41aa259921d9867.tar.xz |
Should use gEfiFirmwareFileSystem2Guid but not gEfiFirmwareFileSystemGuid in DxeCore.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@3096 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdeModulePkg/Core/Dxe/FwVol/FwVol.c')
-rw-r--r-- | MdeModulePkg/Core/Dxe/FwVol/FwVol.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MdeModulePkg/Core/Dxe/FwVol/FwVol.c b/MdeModulePkg/Core/Dxe/FwVol/FwVol.c index 7fa346cf07..98550c96eb 100644 --- a/MdeModulePkg/Core/Dxe/FwVol/FwVol.c +++ b/MdeModulePkg/Core/Dxe/FwVol/FwVol.c @@ -461,7 +461,7 @@ Returns: // Check to see that the file system is indeed formatted in a way we can
// understand it...
//
- if (!CompareGuid (&FwVolHeader->FileSystemGuid, &gEfiFirmwareFileSystemGuid)) {
+ if (!CompareGuid (&FwVolHeader->FileSystemGuid, &gEfiFirmwareFileSystem2Guid)) {
continue;
}
|