From d10b132bf5393e648a1c64569746c8e886d50702 Mon Sep 17 00:00:00 2001 From: Florian Weimer Date: Thu, 2 Nov 2017 12:14:51 +0100 Subject: stdio-common: Use array_length and array_end macros --- stdio-common/tst-printf-round.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'stdio-common/tst-printf-round.c') diff --git a/stdio-common/tst-printf-round.c b/stdio-common/tst-printf-round.c index e0073f2..a5db3b8 100644 --- a/stdio-common/tst-printf-round.c +++ b/stdio-common/tst-printf-round.c @@ -16,6 +16,7 @@ License along with the GNU C Library; if not, see . */ +#include #include #include #include @@ -167,7 +168,7 @@ do_test (void) int save_round_mode __attribute__ ((unused)) = fegetround (); int result = 0; - for (size_t i = 0; i < sizeof (dec_tests) / sizeof (dec_tests[0]); i++) + for (size_t i = 0; i < array_length (dec_tests); i++) { result |= test_dec_in_one_mode (dec_tests[i].d, dec_tests[i].fmt, dec_tests[i].rn, "default rounding mode"); @@ -197,7 +198,7 @@ do_test (void) #endif } - for (size_t i = 0; i < sizeof (hex_tests) / sizeof (hex_tests[0]); i++) + for (size_t i = 0; i < array_length (hex_tests); i++) { result |= test_hex_in_one_mode (hex_tests[i].d, hex_tests[i].fmt, hex_tests[i].rn, "default rounding mode"); -- cgit v1.1