mirror of
https://github.com/DaveGamble/cJSON.git
synced 2023-08-10 21:13:26 +03:00
Revert "Fix #26: Use long double literal for 1e60"
This reverts commit 3ea491c0a6
.
This commit is contained in:
parent
b4d728d018
commit
a148520ffb
2
cJSON.c
2
cJSON.c
@ -348,7 +348,7 @@ static char *print_number(const cJSON *item, printbuffer *p)
|
|||||||
{
|
{
|
||||||
sprintf(str, "null");
|
sprintf(str, "null");
|
||||||
}
|
}
|
||||||
else if ((fabs(floor(d) - d) <= DBL_EPSILON) && (fabs(d) < 1.0e60L))
|
else if ((fabs(floor(d) - d) <= DBL_EPSILON) && (fabs(d) < 1.0e60))
|
||||||
{
|
{
|
||||||
sprintf(str, "%.0f", d);
|
sprintf(str, "%.0f", d);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user