diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-09-06 19:43:37 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-09-06 19:43:37 +0200 |
commit | b8c6166b1b75036ab3e4127a1c0aacf52ca93651 (patch) | |
tree | 08bfc5411acdcf174e0922849cda222656feb4d9 /locale | |
parent | d8cf84ac7e504663dfeb2bb45d8d48ae81effe05 (diff) | |
download | glibc-b8c6166b1b75036ab3e4127a1c0aacf52ca93651.zip glibc-b8c6166b1b75036ab3e4127a1c0aacf52ca93651.tar.gz glibc-b8c6166b1b75036ab3e4127a1c0aacf52ca93651.tar.bz2 |
locale: Add missing second argument to _Static_assert in C-collate-seq.c
Diffstat (limited to 'locale')
-rw-r--r-- | locale/C-collate-seq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/locale/C-collate-seq.c b/locale/C-collate-seq.c index 4fb82cb..40b17f4 100644 --- a/locale/C-collate-seq.c +++ b/locale/C-collate-seq.c @@ -55,7 +55,7 @@ static const char collseqmb[] = /* This table must be 256 bytes in size. We index bytes into the table to find the collation sequence. */ -_Static_assert (sizeof (collseqmb) == 256); +_Static_assert (sizeof (collseqmb) == 256, "sizeof (collseqmb)"); static const uint32_t collseqwc[] = { |