diff options
author | Michael Brown <mcb30@ipxe.org> | 2016-05-05 14:46:40 +0100 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2016-05-05 23:42:57 +0100 |
commit | 49a5bcfba626a8fc01612d0b3f50b56c51529618 (patch) | |
tree | dd6d453e024a5687e12f155a6714e1dfa1123db4 | |
parent | 67f539fa80753877d7d7615c32b5ebdee5169f54 (diff) | |
download | ipxe-49a5bcfba626a8fc01612d0b3f50b56c51529618.tar.gz |
[bitops] Fix typo in test case
Signed-off-by: Michael Brown <mcb30@ipxe.org>
-rw-r--r-- | src/tests/bitops_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/bitops_test.c b/src/tests/bitops_test.c index a689b949f..f29fc6801 100644 --- a/src/tests/bitops_test.c +++ b/src/tests/bitops_test.c @@ -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 ); |