Add precision specifier for floating point numbers.

This commit is contained in:
Gunnar Beutner 2012-07-31 15:35:57 +02:00
parent ef4a855b37
commit 7a9dcaacbe
1 changed files with 1 additions and 1 deletions

View File

@ -131,7 +131,7 @@ static char *print_number(cJSON *item)
if (str)
{
if (fabs(floor(d)-d)<=DBL_EPSILON) sprintf(str,"%.0f",d);
else if (fabs(d)<1.0e-6 || fabs(d)>1.0e9) sprintf(str,"%e",d);
else if (fabs(d)<1.0e-6 || fabs(d)>1.0e9) sprintf(str,"%.16e",d);
else sprintf(str,"%f",d);
}
}