tst-strftime2: Use array_length macros instead of magic numbers

ChangeLog:

	* time/tst-strftime2.c: Use array_length macros instead of magic
	numbers.
This commit is contained in:
TAMUKI Shoichi 2019-02-08 22:03:14 +09:00
parent 669ff911e2
commit 144a794e0a
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2019-02-08 TAMUKI Shoichi <tamuki@linet.gr.jp>
* time/tst-strftime2.c: Use array_length macros instead of magic
numbers.
2019-02-08 Florian Weimer <fweimer@redhat.com>
[BZ #24161]

View File

@ -41,7 +41,8 @@ static const struct
{ 1, 3, 98 }
};
static char ref[3][3][6][100];
static char ref[array_length (locales)][array_length (formats)]
[array_length (dates)][100];
static void
mkreftable (void)