mirror of
https://github.com/DaveGamble/cJSON.git
synced 2023-08-10 21:13:26 +03:00
print_number: Return buffer + offset instead of beginning of the number
This commit is contained in:
parent
6f271e511f
commit
e78bc42362
2
cJSON.c
2
cJSON.c
@ -381,7 +381,7 @@ static unsigned char *print_number(const cJSON * const item, printbuffer * const
|
|||||||
|
|
||||||
output_buffer->offset += (size_t)length;
|
output_buffer->offset += (size_t)length;
|
||||||
|
|
||||||
return output_pointer;
|
return output_buffer->buffer + output_buffer->offset;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* parse 4 digit hexadecimal number */
|
/* parse 4 digit hexadecimal number */
|
||||||
|
Loading…
Reference in New Issue
Block a user