Reviewed-By: Wu Jiaxin <[email protected]>    

Best Regards!
Jiaxin

> -----Original Message-----
> From: edk2-devel [mailto:[email protected]] On Behalf Of
> Laszlo Ersek
> Sent: Tuesday, June 28, 2016 9:26 PM
> To: edk2-devel-01 <[email protected]>
> Cc: Fu, Siyuan <[email protected]>; Wu, Jiaxin <[email protected]>
> Subject: [edk2] [PATCH 2/6] NetworkPkg: fix ASSERT_EFI_ERROR() typos
> 
> 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
_______________________________________________
edk2-devel mailing list
[email protected]
https://lists.01.org/mailman/listinfo/edk2-devel

Reply via email to