Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[test] Fix compiler warning on older gcc versions
Reported-by: Alex Davies <alex@davz.net>
Signed-off-by: Michael Brown <mcb30@ipxe.org>
  • Loading branch information
mcb30 committed May 4, 2012
1 parent 557f467 commit 6a4b128
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tests/list_test.c
Expand Up @@ -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];
Expand All @@ -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];
Expand Down

0 comments on commit 6a4b128

Please sign in to comment.