print_number: Return buffer + offset instead of beginning of the number

This commit is contained in:
Max Bruckner 2017-03-01 13:00:52 +01:00
parent 6f271e511f
commit e78bc42362
1 changed files with 1 additions and 1 deletions

View File

@ -381,7 +381,7 @@ static unsigned char *print_number(const cJSON * const item, printbuffer * const
output_buffer->offset += (size_t)length;
return output_pointer;
return output_buffer->buffer + output_buffer->offset;
}
/* parse 4 digit hexadecimal number */