print_number: Fix comment (missing word 'zeroes')

This commit is contained in:
Max Bruckner 2017-04-08 02:46:24 +02:00
parent 749fefc0c4
commit 71b96afc27

View File

@ -417,7 +417,7 @@ static cJSON_bool print_number(const cJSON * const item, printbuffer * const out
unsigned char *output_pointer = NULL; unsigned char *output_pointer = NULL;
double d = item->valuedouble; double d = item->valuedouble;
int length = 0; int length = 0;
cJSON_bool trim_zeroes = true; /* should at the end be removed? */ cJSON_bool trim_zeroes = true; /* should zeroes at the end be removed? */
if (output_buffer == NULL) if (output_buffer == NULL)
{ {