summaryrefslogtreecommitdiffstats
path: root/MdePkg/Library/BaseLib/SwapBytes64.c
diff options
context:
space:
mode:
Diffstat (limited to 'MdePkg/Library/BaseLib/SwapBytes64.c')
-rw-r--r--MdePkg/Library/BaseLib/SwapBytes64.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/MdePkg/Library/BaseLib/SwapBytes64.c b/MdePkg/Library/BaseLib/SwapBytes64.c
index ccbdadf306..5b54a9064b 100644
--- a/MdePkg/Library/BaseLib/SwapBytes64.c
+++ b/MdePkg/Library/BaseLib/SwapBytes64.c
@@ -24,16 +24,16 @@
from little endian to big endian or vice versa. The byte swapped value is
returned.
- @param Value Operand A 64-bit unsigned value.
+ @param Value A 64-bit unsigned value.
- @return The byte swapped Operand.
+ @return The byte swapped Value.
**/
UINT64
EFIAPI
SwapBytes64 (
- IN UINT64 Operand
+ IN UINT64 Value
)
{
- return InternalMathSwapBytes64 (Operand);
+ return InternalMathSwapBytes64 (Value);
}