浏览代码

[test] Fix compiler warning on older gcc versions

Reported-by: Alex Davies <alex@davz.net>
Signed-off-by: Michael Brown <mcb30@ipxe.org>
tags/v1.20.1
Michael Brown 12 年前
父节点
当前提交
6a4b128191
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2
    2
      src/tests/list_test.c

+ 2
- 2
src/tests/list_test.c 查看文件

@@ -425,7 +425,7 @@ static void list_test_exec ( void ) {
425 425
 	pos = &list_tests[7];
426 426
 	list_iterate_entry_ok ( list_for_each_entry_continue, "293",
427 427
 				pos, list, list );
428
-	pos = list_entry ( list, struct list_test, list );
428
+	ok ( pos == list_entry ( list, struct list_test, list ) );
429 429
 	list_iterate_entry_ok ( list_for_each_entry_continue, "47293",
430 430
 				pos, list, list );
431 431
 	pos = &list_tests[3];
@@ -434,7 +434,7 @@ static void list_test_exec ( void ) {
434 434
 	pos = &list_tests[2];
435 435
 	list_iterate_entry_ok ( list_for_each_entry_continue_reverse, "74",
436 436
 				pos, list, list );
437
-	pos = list_entry ( list, struct list_test, list );
437
+	ok ( pos == list_entry ( list, struct list_test, list ) );
438 438
 	list_iterate_entry_ok ( list_for_each_entry_continue_reverse, "39274",
439 439
 				pos, list, list );
440 440
 	pos = &list_tests[4];

正在加载...
取消
保存