2
0
mirror of https://github.com/xcat2/xNBA.git synced 2024-11-22 17:41:55 +00:00

[test] Fix compiler warning on older gcc versions

Reported-by: Alex Davies <alex@davz.net>
Signed-off-by: Michael Brown <mcb30@ipxe.org>
This commit is contained in:
Michael Brown 2012-05-04 18:46:26 +01:00
parent 557f467bab
commit 6a4b128191

View File

@ -425,7 +425,7 @@ static void list_test_exec ( void ) {
pos = &list_tests[7];
list_iterate_entry_ok ( list_for_each_entry_continue, "293",
pos, list, list );
pos = list_entry ( list, struct list_test, list );
ok ( pos == list_entry ( list, struct list_test, list ) );
list_iterate_entry_ok ( list_for_each_entry_continue, "47293",
pos, list, list );
pos = &list_tests[3];
@ -434,7 +434,7 @@ static void list_test_exec ( void ) {
pos = &list_tests[2];
list_iterate_entry_ok ( list_for_each_entry_continue_reverse, "74",
pos, list, list );
pos = list_entry ( list, struct list_test, list );
ok ( pos == list_entry ( list, struct list_test, list ) );
list_iterate_entry_ok ( list_for_each_entry_continue_reverse, "39274",
pos, list, list );
pos = &list_tests[4];