diff options
Diffstat (limited to 'src/nvim/quickfix.c')
-rw-r--r-- | src/nvim/quickfix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/quickfix.c b/src/nvim/quickfix.c index 3b5fa67f63..ca2b356863 100644 --- a/src/nvim/quickfix.c +++ b/src/nvim/quickfix.c @@ -2121,7 +2121,7 @@ static void qf_msg(qf_info_T *qi, int which, char *lead) while (STRLEN(buf) < 34) { STRCAT(buf, " "); } - STRCAT(buf, title); + vim_strcat(buf, title, IOSIZE); } trunc_string(buf, buf, (int)Columns - 1, IOSIZE); msg(buf); |