Bump format parsing buffer to 64K
This commit is contained in:
parent
595a8afa44
commit
989f869747
1 changed files with 1 additions and 1 deletions
|
|
@ -129,7 +129,7 @@ format_t::element_t * format_t::parse_elements(const string& fmt,
|
|||
|
||||
element_t * current = NULL;
|
||||
|
||||
char buf[1024];
|
||||
static char buf[65535];
|
||||
char * q = buf;
|
||||
|
||||
for (const char * p = fmt.c_str(); *p; p++) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue