浏览代码

[bitops] Fix typo in test case

Signed-off-by: Michael Brown <mcb30@ipxe.org>
tags/v1.20.1
Michael Brown 8 年前
父节点
当前提交
49a5bcfba6
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      src/tests/bitops_test.c

+ 1
- 1
src/tests/bitops_test.c 查看文件

@@ -60,7 +60,7 @@ static void bitops_test_exec ( void ) {
60 60
 
61 61
 	/* Test clear_bit() */
62 62
 	clear_bit ( 0, bits );
63
-	ok ( bits[5] == 0x00 );
63
+	ok ( bits[0] == 0x00 );
64 64
 	bits[5] = 0xff;
65 65
 	clear_bit ( 42, bits );
66 66
 	ok ( bits[5] == 0xfb );

正在加载...
取消
保存