lib/json: format fix of append double quote

A couple of format fix shown by check_format.sh in the commit
"Always append one double quote char in the end of string".

Signed-off-by: Damiano Cipriani <damiano.cipriani@suse.com>
This commit is contained in:
Damiano Cipriani 2023-06-30 16:28:29 +02:00 committed by Derek Su
parent 69f656824e
commit 4542f9b140

View File

@ -430,7 +430,7 @@ write_string_or_name(struct spdk_json_write_ctx *w, const char *val, size_t len)
p += codepoint_len;
}
// Always append "\"" in the end of string
/* Always append "\"" in the end of string */
retval = emit(w, "\"", 1);
if (failed) {