diff options
author | Martin Sebor <msebor@redhat.com> | 2017-05-09 15:55:05 +0000 |
---|---|---|
committer | Martin Sebor <msebor@gcc.gnu.org> | 2017-05-09 09:55:05 -0600 |
commit | e0d222789fc822485a81c9c346a94075c0a4b4bb (patch) | |
tree | b9c1dac24b671683c8797344919f5f96056e1922 /gcc | |
parent | 823c79ae1e1d2cabafbd85ec9339d12d7c072de5 (diff) | |
download | gcc-e0d222789fc822485a81c9c346a94075c0a4b4bb.zip gcc-e0d222789fc822485a81c9c346a94075c0a4b4bb.tar.gz gcc-e0d222789fc822485a81c9c346a94075c0a4b4bb.tar.bz2 |
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
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/config/sol2-c.c | 6 |
2 files changed, 7 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4893234..60b6b4f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,6 +1,10 @@ 2017-05-09 Martin Sebor <msebor@redhat.com> 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. (ms_scanf_flag_specs, ms_strftime_flag_specs): Same. diff --git a/gcc/config/sol2-c.c b/gcc/config/sol2-c.c index 7c404b0..984835c 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 } }; |