From: Michael Brown Date: Fri, 4 May 2012 17:46:26 +0000 (+0100) Subject: [test] Fix compiler warning on older gcc versions X-Git-Tag: v1.20.1~1809 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6a4b128191fb58f2b121a8f3b6cb2034d6f4cbca;p=thirdparty%2Fipxe.git [test] Fix compiler warning on older gcc versions Reported-by: Alex Davies Signed-off-by: Michael Brown --- diff --git a/src/tests/list_test.c b/src/tests/list_test.c index 39698553d..e237d56a8 100644 --- a/src/tests/list_test.c +++ b/src/tests/list_test.c @@ -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];