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