diff options
| -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 |
