in 8612006d I somehow missed this, and that file was emitting a -Wmisleading-indentation warning. Clean that up
Signed-off-by: Peter Damianov <[email protected]> --- mingw-w64-crt/stdio/mingw_pformat.c | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/mingw-w64-crt/stdio/mingw_pformat.c b/mingw-w64-crt/stdio/mingw_pformat.c index a0b5ef0f6..4480c8648 100644 --- a/mingw-w64-crt/stdio/mingw_pformat.c +++ b/mingw-w64-crt/stdio/mingw_pformat.c @@ -1909,13 +1909,14 @@ void __pformat_gfloat( long double x, __pformat_t *stream ) * it, to suppress output of non-significant trailing zeros... */ stream->precision = strlen( value ) - intlen; - /* When the mantissa is shorter than the number of integer digits - * (e.g., 100000 has mantissa "1" but requires 6 digit positions), - * precision becomes negative. Clamp to zero to represent no - * fractional digits. - */ - if( stream->precision < 0 ) - stream->precision = 0; + + /* When the mantissa is shorter than the number of integer digits + * (e.g., 100000 has mantissa "1" but requires 6 digit positions), + * precision becomes negative. Clamp to zero to represent no + * fractional digits. + */ + if( stream->precision < 0 ) + stream->precision = 0; /* Now, we format the result as any other fixed point value. */ -- 2.47.3 _______________________________________________ Mingw-w64-public mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/mingw-w64-public
