summaryrefslogtreecommitdiff
path: root/stdio-common/bug16.c
diff options
context:
space:
mode:
Diffstat (limited to 'stdio-common/bug16.c')
-rw-r--r--stdio-common/bug16.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/stdio-common/bug16.c b/stdio-common/bug16.c
index 1112c39d05..91bc452826 100644
--- a/stdio-common/bug16.c
+++ b/stdio-common/bug16.c
@@ -1,3 +1,4 @@
+#include <array_length.h>
#include <stdio.h>
#include <string.h>
@@ -19,7 +20,7 @@ do_test (void)
char buf[100];
int ret = 0;
- for (size_t i = 0; i < sizeof (tests) / sizeof (tests[0]); ++i)
+ for (size_t i = 0; i < array_length (tests); ++i)
{
snprintf (buf, sizeof (buf), "%.0LA", tests[i].val);