X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=MdePkg%2FLibrary%2FBaseLib%2FSwapBytes16.c;fp=MdePkg%2FLibrary%2FBaseLib%2FSwapBytes16.c;h=12d452f891eaae3acc8969cbe0c5569bb943690f;hb=2f88bd3a1296c522317f1c21377876de63de5be7;hp=52e7f71d25bb2482a54291e94deeb1388d7b361a;hpb=1436aea4d5707e672672a11bda72be2c63c936c3;p=mirror_edk2.git 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)); }