Increase output buffer so output will fit better
This commit is contained in:
parent
593e61dbd5
commit
6512bd5a95
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ static void
|
|||
cprintf(client_t *c, const char *fmt, ...)
|
||||
{
|
||||
va_list ap;
|
||||
char buf[1000];
|
||||
char buf[5000];
|
||||
|
||||
va_start(ap, fmt);
|
||||
vsnprintf(buf, sizeof(buf), fmt, ap);
|
||||
|
|
Loading…
Add table
Reference in a new issue