Fix some shift-op-parentheses warnings

This commit is contained in:
Jon Trulson
2021-12-11 14:57:20 -07:00
parent d470302354
commit 24a2f05138
2 changed files with 7 additions and 7 deletions

View File

@@ -234,7 +234,7 @@ BuildLockMaskSequence(void)
* funny because we skip the case of all the
* bits cleared.
*/
run = (0x1 << bit-1); /* number of consecutive masks to set
run = (0x1 << (bit-1)); /* number of consecutive masks to set
bits in */
bit_on = False; /* are we setting bits or not? */