diff options
-rw-r--r-- | src/nvim/quickfix.c | 2 | ||||
-rw-r--r-- | src/nvim/version.c | 2 |
2 files changed, 2 insertions, 2 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); diff --git a/src/nvim/version.c b/src/nvim/version.c index 6e94846907..0f0666ddf9 100644 --- a/src/nvim/version.c +++ b/src/nvim/version.c @@ -376,7 +376,7 @@ static int included_patches[] = { // 2067, 2066, 2065, - // 2064, + 2064, // 2063 NA 2062, // 2061, |