On Tue, 2005-08-30 at 15:04 -0400, Ned Batchelder wrote:
> As near as I can tell, this line in printf.c (line 445):
>
> while( realvalue>10.0 && exp<=350 ){ realvalue *= 0.1; exp++; }
>
> should be:
>
> while( realvalue>=10.0 && exp<=350 ){ realvalue *= 0.1; exp++; }
> Thanks. This is the problem and it is being fixed now. -- D. Richard Hipp <[EMAIL PROTECTED]>

