1
0
mirror of https://github.com/Tha14/toxic.git synced 2025-12-07 00:36:35 +01:00

increase line_info msg buffer size so won't cut off long log lines

This commit is contained in:
Jfreegman
2014-09-22 13:49:09 -04:00
parent dc3b2e04ab
commit c07c0028bb
3 changed files with 4 additions and 5 deletions

View File

@@ -143,7 +143,7 @@ void line_info_add(ToxWindow *self, char *timestr, char *name1, char *name2, uin
if (new_line == NULL)
exit_toxic_err("failed in line_info_add", FATALERR_MEMORY);
char frmt_msg[MAX_STR_SIZE] = {0};
char frmt_msg[MAX_LINE_INFO_MSG_SIZE] = {0};
va_list args;
va_start(args, msg);