diff --git a/cJSON.c b/cJSON.c index 3bba46d..0fd8c3e 100644 --- a/cJSON.c +++ b/cJSON.c @@ -348,7 +348,7 @@ static char *print_number(const cJSON *item, printbuffer *p) { 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); }