aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/quickfix.c
diff options
context:
space:
mode:
authorMark Bainter <mbainter+github@gmail.com>2015-04-19 23:06:02 +0000
committerMark Bainter <mbainter+github@gmail.com>2015-05-06 21:25:04 -0500
commitf813fdce38067eaf13272be413f50d420d57d58f (patch)
treebe1672b340e900550293d97dd6325e9ee7074790 /src/nvim/quickfix.c
parent28ad7b5026d731a832bf60ba4c497c9e3d97e9ff (diff)
downloadrneovim-f813fdce38067eaf13272be413f50d420d57d58f.tar.gz
rneovim-f813fdce38067eaf13272be413f50d420d57d58f.tar.bz2
rneovim-f813fdce38067eaf13272be413f50d420d57d58f.zip
Remove char_u: add_pathsep()
Diffstat (limited to 'src/nvim/quickfix.c')
-rw-r--r--src/nvim/quickfix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/quickfix.c b/src/nvim/quickfix.c
index a37a41caeb..9b51a2bf62 100644
--- a/src/nvim/quickfix.c
+++ b/src/nvim/quickfix.c
@@ -3546,7 +3546,7 @@ void ex_helpgrep(exarg_T *eap)
copy_option_part(&p, NameBuff, MAXPATHL, ",");
/* Find all "*.txt" and "*.??x" files in the "doc" directory. */
- add_pathsep(NameBuff);
+ add_pathsep((char *)NameBuff);
STRCAT(NameBuff, "doc/*.\\(txt\\|??x\\)");
// Note: We cannot just do `&NameBuff` because it is a statically sized array