Browse Source

[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 years ago
parent
commit
6a4b128191
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      src/tests/list_test.c

+ 2
- 2
src/tests/list_test.c View File

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

Loading…
Cancel
Save