mirror of https://github.com/acidanthera/audk.git
Coding style checked
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@7459 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
7ae9c1ce8f
commit
7b2207f058
|
@ -709,11 +709,11 @@ EfiFvbEraseCustomBlockRange (
|
|||
return EFI_INVALID_PARAMETER;
|
||||
}
|
||||
|
||||
if (!(mFvbEntry[Instance].FvbExtension)) {
|
||||
if (mFvbEntry[Instance].FvbExtension == NULL) {
|
||||
return EFI_UNSUPPORTED;
|
||||
}
|
||||
|
||||
if (!(mFvbEntry[Instance].FvbExtension->EraseFvbCustomBlock)) {
|
||||
if (mFvbEntry[Instance].FvbExtension->EraseFvbCustomBlock == NULL) {
|
||||
return EFI_UNSUPPORTED;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue