david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

[bitops] Fix typo in test case

Signed-off-by: Michael Brown <mcb30@ipxe.org>
This commit is contained in:
Michael Brown 2016-05-05 14:46:40 +01:00
parent 67f539fa80
commit 49a5bcfba6
1 changed files with 1 additions and 1 deletions

View File

@ -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 );