diff options
author | qwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524> | 2007-11-19 08:03:35 +0000 |
---|---|---|
committer | qwang12 <qwang12@6f19259b-4bc3-4df7-8a09-765794883524> | 2007-11-19 08:03:35 +0000 |
commit | ef8169977a6876cb19bd6af4138dccf3c7911d2a (patch) | |
tree | 9efcc21fe28826923d65398f8c9706ee76cf3812 | |
parent | 7e181f2f37c33ce73411ba4752093f603a6ff0bf (diff) | |
download | edk2-platforms-ef8169977a6876cb19bd6af4138dccf3c7911d2a.tar.xz |
Use MACRO EFI_FV_FILETYPE_ALL instead of a constant.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@4303 6f19259b-4bc3-4df7-8a09-765794883524
-rw-r--r-- | MdeModulePkg/Core/Dxe/FwVol/FwVolRead.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MdeModulePkg/Core/Dxe/FwVol/FwVolRead.c b/MdeModulePkg/Core/Dxe/FwVol/FwVolRead.c index 94ba501896..59df02e11d 100644 --- a/MdeModulePkg/Core/Dxe/FwVol/FwVolRead.c +++ b/MdeModulePkg/Core/Dxe/FwVol/FwVolRead.c @@ -187,7 +187,7 @@ Returns: continue;
}
- if (*FileType == 0) {
+ if (*FileType == EFI_FV_FILETYPE_ALL) {
//
// Process all file types so we have a match
//
|