Fix nul stripping and get GreatLord of my back ;-)

svn path=/trunk/; revision=20303
This commit is contained in:
Gé van Geldorp 2005-12-22 20:41:46 +00:00
parent e2b8d4b568
commit 09b5023d6f

View file

@ -368,7 +368,11 @@ static int numberf(FILE * f, double __n, wchar_t exp_sign, int size, int precis
tmp = buf;
if ( type & ZEROTRUNC && ((type & SPECIAL) != SPECIAL) ) {
j = 0;
while ( j < i && ( *tmp == L'0' || *tmp == L'.' )) {
while ( j < i && *tmp == L'0' ) {
tmp++;
i--;
}
if ( j < i && *tmp == L'.' ) {
tmp++;
i--;
}