summaryrefslogtreecommitdiff
path: root/src/pathchk.c
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2008-11-30 22:37:42 +0100
committerJim Meyering <meyering@redhat.com>2008-12-01 21:18:52 +0100
commitc58b5daa337b16416be50adfeb3e99e3c009c891 (patch)
treeed91dec7768322eb9f09427036069239b210f562 /src/pathchk.c
parent80325aca2dc20c9f6ac0ac51fdfb2a12aee565eb (diff)
downloadcoreutils-c58b5daa337b16416be50adfeb3e99e3c009c891.tar.xz
avoid warnings about initialization of automatic aggregates
* src/system.h (DZA_CONCAT0, DZA_CONCAT): New macros. (DECLARE_ZEROED_AGGREGATE): New macro. * src/ls.c (quote_name): Use it. * src/pathchk.c (portable_chars_only): Use it. * src/shred.c (main): Use it. * src/stty.c (main): Use it. * src/wc.c (SUPPORT_OLD_MBRTOWC): Use it.
Diffstat (limited to 'src/pathchk.c')
-rw-r--r--src/pathchk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pathchk.c b/src/pathchk.c
index 48001fc03..3b2bd467b 100644
--- a/src/pathchk.c
+++ b/src/pathchk.c
@@ -198,7 +198,7 @@ portable_chars_only (char const *file, size_t filelen)
if (*invalid)
{
- mbstate_t mbstate = { 0, };
+ DECLARE_ZEROED_AGGREGATE (mbstate_t, mbstate);
size_t charlen = mbrlen (invalid, filelen - validlen, &mbstate);
error (0, 0,
_("nonportable character %s in file name %s"),