summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLiming Gao <liming.gao@intel.com>2018-01-31 20:27:10 +0800
committerLiming Gao <liming.gao@intel.com>2018-02-01 09:24:49 +0800
commit93efab6d9a8e2278631752fad934425de0a6337a (patch)
treece2f859b44268ff4e4fe1fbf48241a0972fdf27b
parent6f49996cedfb198beb374ea0cb89a06a71ef960c (diff)
downloadedk2-93efab6d9a8e2278631752fad934425de0a6337a.tar.gz
edk2-93efab6d9a8e2278631752fad934425de0a6337a.tar.bz2
edk2-93efab6d9a8e2278631752fad934425de0a6337a.zip
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>
-rw-r--r--MdePkg/Include/Library/SafeIntLib.h12
1 files changed, 6 insertions, 6 deletions
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
);
/**