summaryrefslogtreecommitdiffstats
path: root/MdePkg/Library/BaseLib/SwapBytes16.c
diff options
context:
space:
mode:
Diffstat (limited to 'MdePkg/Library/BaseLib/SwapBytes16.c')
-rw-r--r--MdePkg/Library/BaseLib/SwapBytes16.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/MdePkg/Library/BaseLib/SwapBytes16.c b/MdePkg/Library/BaseLib/SwapBytes16.c
index 52e7f71d25..12d452f891 100644
--- a/MdePkg/Library/BaseLib/SwapBytes16.c
+++ b/MdePkg/Library/BaseLib/SwapBytes16.c
@@ -6,9 +6,6 @@
**/
-
-
-
#include "BaseLibInternals.h"
/**
@@ -26,8 +23,8 @@
UINT16
EFIAPI
SwapBytes16 (
- IN UINT16 Value
+ IN UINT16 Value
)
{
- return (UINT16) ((Value<< 8) | (Value>> 8));
+ return (UINT16)((Value<< 8) | (Value>> 8));
}