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 <liming.gao@intel.com>
Reviewed-by: Michael Kinney <michael.d.kinney@intel.com>
Reviewed-by: Laszlo Ersek <lersek@redhat.com>
This commit is contained in:
Liming Gao 2018-01-31 20:27:10 +08:00
parent 6f49996ced
commit 93efab6d9a
1 changed files with 6 additions and 6 deletions

View File

@ -375,7 +375,7 @@ RETURN_STATUS
EFIAPI EFIAPI
SafeInt16ToUint8 ( SafeInt16ToUint8 (
IN INT16 Operand, IN INT16 Operand,
OUT UINT8 *pui8Result OUT UINT8 *Result
); );
/** /**
@ -564,7 +564,7 @@ RETURN_STATUS
EFIAPI EFIAPI
SafeUint16ToUint8 ( SafeUint16ToUint8 (
IN UINT16 Operand, IN UINT16 Operand,
OUT UINT8 *pui8Result OUT UINT8 *Result
); );
/** /**
@ -672,7 +672,7 @@ RETURN_STATUS
EFIAPI EFIAPI
SafeInt32ToUint8 ( SafeInt32ToUint8 (
IN INT32 Operand, IN INT32 Operand,
OUT UINT8 *pui8Result OUT UINT8 *Result
); );
/** /**
@ -889,7 +889,7 @@ RETURN_STATUS
EFIAPI EFIAPI
SafeUint32ToUint8 ( SafeUint32ToUint8 (
IN UINT32 Operand, IN UINT32 Operand,
OUT UINT8 *pui8Result OUT UINT8 *Result
); );
/** /**
@ -1078,7 +1078,7 @@ RETURN_STATUS
EFIAPI EFIAPI
SafeIntnToUint8 ( SafeIntnToUint8 (
IN INTN Operand, IN INTN Operand,
OUT UINT8 *pui8Result OUT UINT8 *Result
); );
/** /**
@ -1321,7 +1321,7 @@ RETURN_STATUS
EFIAPI EFIAPI
SafeUintnToUint8 ( SafeUintnToUint8 (
IN UINTN Operand, IN UINTN Operand,
OUT UINT8 *pui8Result OUT UINT8 *Result
); );
/** /**