* libgfortran/io/write.c (output_float): fix typo in last commit.
From-SVN: r96958
This commit is contained in:
parent
0b6945553a
commit
85624ffd34
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue