diff options
author | Bud Davis <bdavis@gcc.gnu.org> | 2004-12-24 03:17:13 +0000 |
---|---|---|
committer | Bud Davis <bdavis@gcc.gnu.org> | 2004-12-24 03:17:13 +0000 |
commit | c1c42f20d6c2ac53feefd4ba02febe6c3ff4d992 (patch) | |
tree | e62082da209809744397fd0a136696018e6d7680 | |
parent | 3c028f65484d6de748ff7c46f035bba434446a91 (diff) | |
download | gcc-c1c42f20d6c2ac53feefd4ba02febe6c3ff4d992.zip gcc-c1c42f20d6c2ac53feefd4ba02febe6c3ff4d992.tar.gz gcc-c1c42f20d6c2ac53feefd4ba02febe6c3ff4d992.tar.bz2 |
complex_write.f90: removed extraneous comma.
2004-12-23 Bud Davis <bdavis9659@comcast.net>
* gfortran.dg/complex_write.f90: removed extraneous comma.
From-SVN: r92584
-rw-r--r-- | gcc/testsuite/gfortran.dg/complex_write.f90 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/gfortran.dg/complex_write.f90 b/gcc/testsuite/gfortran.dg/complex_write.f90 index 3b73ba3..694c069 100644 --- a/gcc/testsuite/gfortran.dg/complex_write.f90 +++ b/gcc/testsuite/gfortran.dg/complex_write.f90 @@ -7,7 +7,7 @@ real r1,r2 a = cmplx(1.0, 2.0) open(unit=74,status='scratch') - write(74,'(1P,E13.5)'),a + write(74,'(1P,E13.5)')a rewind(74) ! can read the complex in as two reals, one on each line read(74,'(E13.5)')r1,r2 |