summaryrefslogtreecommitdiffstats
path: root/MdePkg/Library/BaseLib/MultU64x32.c
diff options
context:
space:
mode:
Diffstat (limited to 'MdePkg/Library/BaseLib/MultU64x32.c')
-rw-r--r--MdePkg/Library/BaseLib/MultU64x32.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/MdePkg/Library/BaseLib/MultU64x32.c b/MdePkg/Library/BaseLib/MultU64x32.c
index 2bbff51c82..f4c65f8c73 100644
--- a/MdePkg/Library/BaseLib/MultU64x32.c
+++ b/MdePkg/Library/BaseLib/MultU64x32.c
@@ -6,9 +6,6 @@
**/
-
-
-
#include "BaseLibInternals.h"
/**
@@ -28,11 +25,11 @@
UINT64
EFIAPI
MultU64x32 (
- IN UINT64 Multiplicand,
- IN UINT32 Multiplier
+ IN UINT64 Multiplicand,
+ IN UINT32 Multiplier
)
{
- UINT64 Result;
+ UINT64 Result;
Result = InternalMathMultU64x32 (Multiplicand, Multiplier);