summaryrefslogtreecommitdiff
path: root/MdePkg/Library/BaseLib/LowBitSet32.c
diff options
context:
space:
mode:
Diffstat (limited to 'MdePkg/Library/BaseLib/LowBitSet32.c')
-rw-r--r--MdePkg/Library/BaseLib/LowBitSet32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/MdePkg/Library/BaseLib/LowBitSet32.c b/MdePkg/Library/BaseLib/LowBitSet32.c
index a598a1f71f..58d0063e22 100644
--- a/MdePkg/Library/BaseLib/LowBitSet32.c
+++ b/MdePkg/Library/BaseLib/LowBitSet32.c
@@ -44,6 +44,6 @@ LowBitSet32 (
return -1;
}
- for (BitIndex = 0; (Operand & 1) == 0; BitIndex++, Operand >>= 1);
+ for (BitIndex = 0; 0 == (Operand & 1); BitIndex++, Operand >>= 1);
return BitIndex;
}