diff options
author | Roger Sayle <roger@eyesopen.com> | 2004-05-26 23:49:00 +0000 |
---|---|---|
committer | Roger Sayle <sayle@gcc.gnu.org> | 2004-05-26 23:49:00 +0000 |
commit | 4eeaf81e5b0b9345c90cedecc0abf0f0d370ebb9 (patch) | |
tree | d3223f790fe92d1c1577d30b34119ede4f236c35 /gcc/fortran/io.c | |
parent | cdc9d80325162532ebca615589415808243f5877 (diff) | |
download | gcc-4eeaf81e5b0b9345c90cedecc0abf0f0d370ebb9.zip gcc-4eeaf81e5b0b9345c90cedecc0abf0f0d370ebb9.tar.gz gcc-4eeaf81e5b0b9345c90cedecc0abf0f0d370ebb9.tar.bz2 |
io.c (format_asterisk): Silence compiler warnings by correcting the number of elements of a "locus"...
* io.c (format_asterisk): Silence compiler warnings by correcting
the number of elements of a "locus" initializer.
From-SVN: r82301
Diffstat (limited to 'gcc/fortran/io.c')
-rw-r--r-- | gcc/fortran/io.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/fortran/io.c b/gcc/fortran/io.c index 120b4400..9e860d8 100644 --- a/gcc/fortran/io.c +++ b/gcc/fortran/io.c @@ -31,7 +31,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA gfc_st_label format_asterisk = { -1, ST_LABEL_FORMAT, ST_LABEL_FORMAT, NULL, 0, - {NULL, 0, NULL, NULL}, NULL, NULL}; + {NULL, NULL}, NULL, NULL}; typedef struct { |