reformatting: cJSON_PrintBuffered

This commit is contained in:
Max Bruckner 2016-09-28 20:43:46 +07:00
parent ec46581b68
commit 9b7eb6a46d

View File

@ -847,6 +847,7 @@ char *cJSON_PrintBuffered(cJSON *item,int prebuffer,int fmt)
p.buffer = (char*)cJSON_malloc(prebuffer);
p.length = prebuffer;
p.offset = 0;
return print_value(item, 0, fmt, &p);
}