diff options
author | fxcoudert <fxcoudert@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-03-23 22:31:56 +0000 |
---|---|---|
committer | fxcoudert <fxcoudert@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-03-23 22:31:56 +0000 |
commit | 90c03facaf90d41a86cc0e35281acff03dc934f9 (patch) | |
tree | 5709dfcf6b4ad0043c9cfb3b80a41d9a5a6e004b /libgfortran | |
parent | ca1b7575631c5eabdbc156f17dcf390982421338 (diff) | |
download | gcc-90c03facaf90d41a86cc0e35281acff03dc934f9.tar.gz |
* libgfortran/io/write.c (output_float): fix typo in last commit.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@96958 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgfortran')
-rw-r--r-- | libgfortran/io/write.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libgfortran/io/write.c b/libgfortran/io/write.c index d22aa344b05..556adea268b 100644 --- a/libgfortran/io/write.c +++ b/libgfortran/io/write.c @@ -537,7 +537,7 @@ output_float (fnode *f, double value, int len) /* Pick a field size if none was specified. */ if (w <= 0) - w = nbefore + nzero + nafter + (sign != SIGN_NONE ? 2 : 1) + w = nbefore + nzero + nafter + (sign != SIGN_NONE ? 2 : 1); /* Create the ouput buffer. */ out = write_block (w); |