From: François-Xavier Coudert Date: Wed, 23 Mar 2005 22:31:56 +0000 (+0000) Subject: * libgfortran/io/write.c (output_float): fix typo in last commit. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=85624ffd341567caea1762d5534acf63c4d630db;p=gcc.git * libgfortran/io/write.c (output_float): fix typo in last commit. From-SVN: r96958 --- 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);