Open GoogleCodeExporter opened 9 years ago
case 1. expected output is actually "2.0" of course
Original comment by toby.m...@gmail.com
on 10 Dec 2014 at 1:32
Fix: in file modp_num2a.c
@ ln 159 insert:
frac /= 10;
@ ln 159 change to:
} while (count > 0);
@ ln 160: insert:
// rollover fraction
if (frac > 0) {
++whole;
}
Original comment by toby.m...@gmail.com
on 10 Dec 2014 at 2:09
oops, file name is actually modp_numtoa.c
Original comment by toby.m...@gmail.com
on 10 Dec 2014 at 2:10
Original issue reported on code.google.com by
toby.m...@gmail.com
on 10 Dec 2014 at 12:55