Remove test for negative zero, as -0 is acceptable output

This commit is contained in:
Debora Grosse 2017-04-29 13:08:10 -04:00
parent 3fc9bc0648
commit a69ad22639
1 changed files with 0 additions and 5 deletions

View File

@ -431,11 +431,6 @@ static cJSON_bool print_number(const cJSON * const item, printbuffer * const out
{
length = sprintf((char*)number_buffer, "null");
}
/* This checks for negative zero */
else if (d == 0)
{
length = sprintf((char*)number_buffer, "0");
}
else
{
/* Try 15 decimal places of precision to avoid nonsignificant nonzero digits */