From: Liming Gao Date: Wed, 31 Jan 2018 12:27:10 +0000 (+0800) Subject: MdePkg SafeIntLib: Update API definition to use the same output name X-Git-Tag: edk2-stable201903~2501 X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=commitdiff_plain;h=93efab6d9a8e2278631752fad934425de0a6337a MdePkg SafeIntLib: Update API definition to use the same output name In SafeUintnToChar8(), update its output parameter name. Update pui8Result --> Result to match its library implementation Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Liming Gao Reviewed-by: Michael Kinney Reviewed-by: Laszlo Ersek --- diff --git a/MdePkg/Include/Library/SafeIntLib.h b/MdePkg/Include/Library/SafeIntLib.h index 583930195a..8c5003f678 100644 --- a/MdePkg/Include/Library/SafeIntLib.h +++ b/MdePkg/Include/Library/SafeIntLib.h @@ -375,7 +375,7 @@ RETURN_STATUS EFIAPI SafeInt16ToUint8 ( IN INT16 Operand, - OUT UINT8 *pui8Result + OUT UINT8 *Result ); /** @@ -564,7 +564,7 @@ RETURN_STATUS EFIAPI SafeUint16ToUint8 ( IN UINT16 Operand, - OUT UINT8 *pui8Result + OUT UINT8 *Result ); /** @@ -672,7 +672,7 @@ RETURN_STATUS EFIAPI SafeInt32ToUint8 ( IN INT32 Operand, - OUT UINT8 *pui8Result + OUT UINT8 *Result ); /** @@ -889,7 +889,7 @@ RETURN_STATUS EFIAPI SafeUint32ToUint8 ( IN UINT32 Operand, - OUT UINT8 *pui8Result + OUT UINT8 *Result ); /** @@ -1078,7 +1078,7 @@ RETURN_STATUS EFIAPI SafeIntnToUint8 ( IN INTN Operand, - OUT UINT8 *pui8Result + OUT UINT8 *Result ); /** @@ -1321,7 +1321,7 @@ RETURN_STATUS EFIAPI SafeUintnToUint8 ( IN UINTN Operand, - OUT UINT8 *pui8Result + OUT UINT8 *Result ); /**