Removed trailing space

This commit is contained in:
Hiroshi SHIBATA 2025-03-24 15:20:57 +09:00
parent f3f4524d19
commit 6b15857e25
No known key found for this signature in database
GPG Key ID: F9CF13417264FAC2

View File

@ -1077,7 +1077,7 @@ static void generate_json_float(FBuffer *buffer, struct generate_json_data *data
/* This implementation writes directly into the buffer. We reserve /* This implementation writes directly into the buffer. We reserve
* the 24 characters that fpconv_dtoa states as its maximum, plus * the 24 characters that fpconv_dtoa states as its maximum, plus
* 2 more characters for the potential ".0" suffix. * 2 more characters for the potential ".0" suffix.
*/ */
fbuffer_inc_capa(buffer, 26); fbuffer_inc_capa(buffer, 26);
char* d = buffer->ptr + buffer->len; char* d = buffer->ptr + buffer->len;