Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[bitops] Fix typo in test case
Signed-off-by: Michael Brown <mcb30@ipxe.org>
  • Loading branch information
mcb30 committed May 5, 2016
1 parent 67f539f commit 49a5bcf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tests/bitops_test.c
Expand Up @@ -60,7 +60,7 @@ static void bitops_test_exec ( void ) {

/* Test clear_bit() */
clear_bit ( 0, bits );
ok ( bits[5] == 0x00 );
ok ( bits[0] == 0x00 );
bits[5] = 0xff;
clear_bit ( 42, bits );
ok ( bits[5] == 0xfb );
Expand Down

0 comments on commit 49a5bcf

Please sign in to comment.