diff options
author | ro <ro@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-09-10 19:13:21 +0000 |
---|---|---|
committer | ro <ro@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-09-10 19:13:21 +0000 |
commit | 71441fcb8f5f79980190e3993c7106e2386caa03 (patch) | |
tree | 4c6449c1470d149eea440628e66d636c593234f1 /gcc/config/sol2-c.c | |
parent | 313b1a2eae915afa4f9f29ecf89c629d7fd34425 (diff) | |
download | gcc-71441fcb8f5f79980190e3993c7106e2386caa03.tar.gz |
* config/sol2-c.c (cmn_err_length_specs): Initialize
scalar_identity_flag.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@151613 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/sol2-c.c')
-rw-r--r-- | gcc/config/sol2-c.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/sol2-c.c b/gcc/config/sol2-c.c index fc527b1beb7..da00377a432 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[] = |