diff options
author | ZyX <kp-pav@yandex.ru> | 2017-02-15 03:15:47 +0300 |
---|---|---|
committer | ZyX <kp-pav@yandex.ru> | 2017-02-15 03:15:47 +0300 |
commit | 095e6cc2e098db110981e5f9ea4bbc0ce316cecb (patch) | |
tree | b56f1f74b3c4f227218548e0aec606eeff80a920 /src/nvim/quickfix.c | |
parent | efa2682e3b513c4a33d987dc651db5913feff21a (diff) | |
download | rneovim-095e6cc2e098db110981e5f9ea4bbc0ce316cecb.tar.gz rneovim-095e6cc2e098db110981e5f9ea4bbc0ce316cecb.tar.bz2 rneovim-095e6cc2e098db110981e5f9ea4bbc0ce316cecb.zip |
*: Fix linter errors
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 3b86662f05..0da98713df 100644 --- a/src/nvim/quickfix.c +++ b/src/nvim/quickfix.c @@ -2078,7 +2078,7 @@ void qf_list(exarg_T *eap) msg_puts_attr((const char *)IObuff, hl_attr(HLF_N)); if (qfp->qf_pattern != NULL) { qf_fmt_text(qfp->qf_pattern, IObuff, IOSIZE); - STRNCAT(IObuff, ":", IOSIZE); + xstrlcat((char *)IObuff, ":", IOSIZE); msg_puts((const char *)IObuff); } msg_puts(" "); |