summaryrefslogtreecommitdiffstats
path: root/MdePkg/Library/BaseSafeIntLib/SafeIntLib64.c
diff options
context:
space:
mode:
Diffstat (limited to 'MdePkg/Library/BaseSafeIntLib/SafeIntLib64.c')
-rw-r--r--MdePkg/Library/BaseSafeIntLib/SafeIntLib64.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/MdePkg/Library/BaseSafeIntLib/SafeIntLib64.c b/MdePkg/Library/BaseSafeIntLib/SafeIntLib64.c
index 44e0a625aa..bf216c23b4 100644
--- a/MdePkg/Library/BaseSafeIntLib/SafeIntLib64.c
+++ b/MdePkg/Library/BaseSafeIntLib/SafeIntLib64.c
@@ -39,7 +39,7 @@ SafeInt32ToUintn (
OUT UINTN *Result
)
{
- return SafeInt32ToUint64 (Operand, (UINT64 *) Result);
+ return SafeInt32ToUint64 (Operand, (UINT64 *)Result);
}
/**
@@ -104,7 +104,7 @@ SafeIntnToInt32 (
OUT INT32 *Result
)
{
- return SafeInt64ToInt32 ((INT64) Operand, Result);
+ return SafeInt64ToInt32 ((INT64)Operand, Result);
}
/**
@@ -488,4 +488,3 @@ SafeIntnMult (
{
return SafeInt64Mult ((INT64)Multiplicand, (INT64)Multiplier, (INT64 *)Result);
}
-