From e0d222789fc822485a81c9c346a94075c0a4b4bb Mon Sep 17 00:00:00 2001 From: Martin Sebor Date: Tue, 9 May 2017 15:55:05 +0000 Subject: [PATCH] re PR translation/80280 (Missing closing quote (%>) c/semantics.c and c/c-typeck.c) gcc/ChangeLog: PR translation/80280 * config/sol2-c.c (cmn_err_flag_specs): Initialize new data member added in r247778. From-SVN: r247804 --- gcc/ChangeLog | 4 ++++ gcc/config/sol2-c.c | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 48932348897..60b6b4f4e76 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,9 @@ 2017-05-09 Martin Sebor + PR translation/80280 + * config/sol2-c.c (cmn_err_flag_specs): Initialize new data member + added in r247778. + PR translation/80280 * config/i386/msformat-c.c (ms_printf_flag_specs): Initialize new data member added in r247778. diff --git a/gcc/config/sol2-c.c b/gcc/config/sol2-c.c index 7c404b06b70..984835c4e4e 100644 --- a/gcc/config/sol2-c.c +++ b/gcc/config/sol2-c.c @@ -40,9 +40,9 @@ static const format_length_info cmn_err_length_specs[] = static const format_flag_spec cmn_err_flag_specs[] = { - { 'w', 0, 0, N_("field width"), N_("field width in printf format"), STD_C89 }, - { 'L', 0, 0, N_("length modifier"), N_("length modifier in printf format"), STD_C89 }, - { 0, 0, 0, NULL, NULL, STD_C89 } + { 'w', 0, 0, 0, N_("field width"), N_("field width in printf format"), STD_C89 }, + { 'L', 0, 0, 0, N_("length modifier"), N_("length modifier in printf format"), STD_C89 }, + { 0, 0, 0, 0, NULL, NULL, STD_C89 } }; -- 2.30.2