A number of code locations use ASSERT_EFI_ERROR (BooleanExpression)
instead of ASSERT (BooleanExpression) Fix them. Cc: Siyuan Fu <[email protected]> Cc: Jiaxin Wu <[email protected]> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Laszlo Ersek <[email protected]> --- Notes: build tested only NetworkPkg/IpSecDxe/Ikev2/Sa.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NetworkPkg/IpSecDxe/Ikev2/Sa.c b/NetworkPkg/IpSecDxe/Ikev2/Sa.c index 74ef79c23719..4cbfac33b134 100644 --- a/NetworkPkg/IpSecDxe/Ikev2/Sa.c +++ b/NetworkPkg/IpSecDxe/Ikev2/Sa.c @@ -384,7 +384,7 @@ Ikev2InitPskParser ( // 5. Generate Nr_b // IkeSaSession->NrBlock = IkeGenerateNonce (IKE_NONCE_SIZE); - ASSERT_EFI_ERROR (IkeSaSession->NrBlock != NULL); + ASSERT (IkeSaSession->NrBlock != NULL); IkeSaSession->NrBlkSize = IKE_NONCE_SIZE; // -- 1.8.3.1 _______________________________________________ edk2-devel mailing list [email protected] https://lists.01.org/mailman/listinfo/edk2-devel

