fix printf precision specifier for hex floats on non-ld80 archs
authorRich Felker <dalias@aerifal.cx>
Thu, 23 Aug 2018 19:24:03 +0000 (15:24 -0400)
committerRich Felker <dalias@aerifal.cx>
Thu, 23 Aug 2018 19:24:03 +0000 (15:24 -0400)
commitcfa0a54c082d41db6446638eed1d57f163434092
tree91f68ffa2487046482925443e7abe39b8388a4da
parent6aeb131b4c1aee30d7f7125a8a88ce6f41172f01
fix printf precision specifier for hex floats on non-ld80 archs

the code to perform rounding to the desired precision wrongly assumed
the long double mantissa was an integral number of nibbles (hex
digits) in length. this is true for 80-bit extended precision (64-bit
mantissa) but not for double (53) or quad (113).

scale the rounding value by 1<<(LDBL_MANT_DIG%4) to compensate.
src/stdio/vfprintf.c