summaryrefslogtreecommitdiffstats
path: root/MdePkg/Library/BaseLib/LowBitSet64.c
diff options
context:
space:
mode:
Diffstat (limited to 'MdePkg/Library/BaseLib/LowBitSet64.c')
-rw-r--r--MdePkg/Library/BaseLib/LowBitSet64.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/MdePkg/Library/BaseLib/LowBitSet64.c b/MdePkg/Library/BaseLib/LowBitSet64.c
index 349ed526be..c1bc16c596 100644
--- a/MdePkg/Library/BaseLib/LowBitSet64.c
+++ b/MdePkg/Library/BaseLib/LowBitSet64.c
@@ -6,9 +6,6 @@
**/
-
-
-
#include "BaseLibInternals.h"
/**
@@ -28,10 +25,10 @@
INTN
EFIAPI
LowBitSet64 (
- IN UINT64 Operand
+ IN UINT64 Operand
)
{
- INTN BitIndex;
+ INTN BitIndex;
if (Operand == 0) {
return -1;
@@ -39,6 +36,9 @@ LowBitSet64 (
for (BitIndex = 0;
(Operand & 1) == 0;
- BitIndex++, Operand = RShiftU64 (Operand, 1));
+ BitIndex++, Operand = RShiftU64 (Operand, 1))
+ {
+ }
+
return BitIndex;
}