view src/mingw-w64-3-fix-g-format.patch @ 4037:85abb6c3ec8b

of-netcdf: patch for --enable-64 (Bug #46060) * src/of-netcdf-1-fixes.patch: new file * dist-files.mk: add of-netcdf-1-fixes.patch
author John Donoghue <john.donoghue@ieee.org>
date Tue, 29 Sep 2015 19:43:19 -0400
parents d7b2bb282421
children
line wrap: on
line source

From: John Donoghue <john.david.donoghue@gmail.com>
Date: Mon, 6 Apr 2015 09:29:43 -0400
Subject: [PATCH] Fix printf("%g") width format out by one in some instances
 (Bug 362)

* mingw-w64-crt\stdio\mingw_pformat.c
  (__pformat_emit_float): change width > len => width >= len

diff -ur mingw-w64-v3.3.0.orig/mingw-w64-crt/stdio/mingw_pformat.c mingw-w64-v3.3.0/mingw-w64-crt/stdio/mingw_pformat.c
--- mingw-w64-v3.3.0.orig/mingw-w64-crt/stdio/mingw_pformat.c	2015-04-06 10:12:45.486721000 -0400
+++ mingw-w64-v3.3.0/mingw-w64-crt/stdio/mingw_pformat.c	2015-04-06 10:14:26.200702676 -0400
@@ -1055,7 +1055,7 @@
      * reserve space in the output field, for the required number of
      * decimal digits to be placed before the decimal point...
      */
-    if( stream->width > len )
+    if( stream->width >= len )
       /*
        * adjusting as appropriate, when width is sufficient...
        */