* libgfortran/io/write.c (output_float): fix typo in last commit.

From-SVN: r96958
This commit is contained in:
François-Xavier Coudert 2005-03-23 22:31:56 +00:00
parent 0b6945553a
commit 85624ffd34

View file

@ -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);