mirror of
https://github.com/neovim/neovim.git
synced 2025-09-14 23:38:17 +00:00
refactor: Replace vim_strcat() with xstrlcat().
This commit is contained in:
@@ -2126,7 +2126,7 @@ static void qf_msg(qf_info_T *qi, int which, char *lead)
|
||||
memset(buf + len, ' ', 34 - len);
|
||||
buf[34] = NUL;
|
||||
}
|
||||
vim_strcat(buf, (char_u *)title, IOSIZE);
|
||||
xstrlcat((char *)buf, title, IOSIZE);
|
||||
}
|
||||
trunc_string(buf, buf, (int)Columns - 1, IOSIZE);
|
||||
msg(buf);
|
||||
|
Reference in New Issue
Block a user