diff options
author | Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> | 2009-09-10 19:13:21 +0000 |
---|---|---|
committer | Rainer Orth <ro@gcc.gnu.org> | 2009-09-10 19:13:21 +0000 |
commit | 0e6748ab2c1323ff7352035eb1abf3530cff8fff (patch) | |
tree | 4c6449c1470d149eea440628e66d636c593234f1 /gcc | |
parent | b6777feaf5c24a06fa978694ed979d28398c56d6 (diff) | |
download | gcc-0e6748ab2c1323ff7352035eb1abf3530cff8fff.zip gcc-0e6748ab2c1323ff7352035eb1abf3530cff8fff.tar.gz gcc-0e6748ab2c1323ff7352035eb1abf3530cff8fff.tar.bz2 |
sol2-c.c (cmn_err_length_specs): Initialize scalar_identity_flag.
* config/sol2-c.c (cmn_err_length_specs): Initialize
scalar_identity_flag.
From-SVN: r151613
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/sol2-c.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 555a577..e8eb477 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2009-09-10 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> + + * config/sol2-c.c (cmn_err_length_specs): Initialize + scalar_identity_flag. + 2009-09-10 Richard Henderson <rth@redhat.com> * tree.h (struct tree_decl_common): Move align member earlier; diff --git a/gcc/config/sol2-c.c b/gcc/config/sol2-c.c index fc527b1..da00377 100644 --- a/gcc/config/sol2-c.c +++ b/gcc/config/sol2-c.c @@ -36,8 +36,8 @@ along with GCC; see the file COPYING3. If not see /* cmn_err only accepts "l" and "ll". */ static const format_length_info cmn_err_length_specs[] = { - { "l", FMT_LEN_l, STD_C89, "ll", FMT_LEN_ll, STD_C89 }, - { NULL, FMT_LEN_none, STD_C89, NULL, FMT_LEN_none, STD_C89 } + { "l", FMT_LEN_l, STD_C89, "ll", FMT_LEN_ll, STD_C89, 0 }, + { NULL, FMT_LEN_none, STD_C89, NULL, FMT_LEN_none, STD_C89, 0 } }; static const format_flag_spec cmn_err_flag_specs[] = |