From: fxcoudert 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: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=90c03facaf90d41a86cc0e35281acff03dc934f9;p=thirdparty%2Fgcc.git * 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 --- diff --git a/libgfortran/io/write.c b/libgfortran/io/write.c index d22aa344b056..556adea268ba 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);