mirror of https://github.com/acidanthera/audk.git
FmpDevicePkg FmpDxe: Fix XCODE build failure
FmpDxe.c:517:18: error: equality comparison with extraneous parentheses [-Werror,-Wparentheses-equality] NOTE: This patch is based on thread https://lists.01.org/pipermail/edk2-devel/2018-July/027810.html. Cc: Michael D Kinney <michael.d.kinney@intel.com> Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Star Zeng <star.zeng@intel.com> Reviewed-by: Michael D Kinney <michael.d.kinney@intel.com>
This commit is contained in:
parent
d7fb5a4632
commit
0334068343
|
@ -514,7 +514,7 @@ GetTheImage (
|
|||
goto cleanup;
|
||||
}
|
||||
|
||||
if ((ImageSize == NULL)) {
|
||||
if (ImageSize == NULL) {
|
||||
DEBUG ((DEBUG_ERROR, "FmpDxe: GetImage() - ImageSize Pointer Parameter is NULL.\n"));
|
||||
Status = EFI_INVALID_PARAMETER;
|
||||
goto cleanup;
|
||||
|
|
Loading…
Reference in New Issue