summaryrefslogtreecommitdiff
path: root/stdio-common/tst-long-dbl-fphex.c
diff options
context:
space:
mode:
Diffstat (limited to 'stdio-common/tst-long-dbl-fphex.c')
-rw-r--r--stdio-common/tst-long-dbl-fphex.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/stdio-common/tst-long-dbl-fphex.c b/stdio-common/tst-long-dbl-fphex.c
index 6241dfd48e..33dc73190d 100644
--- a/stdio-common/tst-long-dbl-fphex.c
+++ b/stdio-common/tst-long-dbl-fphex.c
@@ -1,5 +1,5 @@
/* This file is part of the GNU C Library.
- Copyright (C) 2012-2016 Free Software Foundation, Inc.
+ Copyright (C) 2012-2018 Free Software Foundation, Inc.
Contributed by Marek Polacek <polacek@redhat.com>, 2012.
The GNU C Library is free software; you can redistribute it and/or
@@ -16,6 +16,7 @@
License along with the GNU C Library; if not, see
<http://www.gnu.org/licenses/>. */
+#include <array_length.h>
#include <wchar.h>
/* Prototype for our test function. */
@@ -28,9 +29,9 @@ do_test (void)
int result = 0;
const long double x = 24.5;
wchar_t a[16];
- swprintf (a, sizeof a / sizeof a[0], L"%La\n", x);
+ swprintf (a, array_length (a), L"%La\n", x);
wchar_t A[16];
- swprintf (A, sizeof A / sizeof A[0], L"%LA\n", x);
+ swprintf (A, array_length (a), L"%LA\n", x);
/* Here wprintf can return four valid variants. We must accept all
of them. */