diff options
author | Mark Bainter <mbainter+github@gmail.com> | 2015-04-19 23:06:02 +0000 |
---|---|---|
committer | Mark Bainter <mbainter+github@gmail.com> | 2015-05-06 21:25:04 -0500 |
commit | f813fdce38067eaf13272be413f50d420d57d58f (patch) | |
tree | be1672b340e900550293d97dd6325e9ee7074790 /src/nvim/ex_cmds.c | |
parent | 28ad7b5026d731a832bf60ba4c497c9e3d97e9ff (diff) | |
download | rneovim-f813fdce38067eaf13272be413f50d420d57d58f.tar.gz rneovim-f813fdce38067eaf13272be413f50d420d57d58f.tar.bz2 rneovim-f813fdce38067eaf13272be413f50d420d57d58f.zip |
Remove char_u: add_pathsep()
Diffstat (limited to 'src/nvim/ex_cmds.c')
-rw-r--r-- | src/nvim/ex_cmds.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/ex_cmds.c b/src/nvim/ex_cmds.c index 78200e4689..830636fb66 100644 --- a/src/nvim/ex_cmds.c +++ b/src/nvim/ex_cmds.c @@ -5126,7 +5126,7 @@ void fix_help_buffer(void) char_u *cp; /* Find all "doc/ *.txt" files in this directory. */ - add_pathsep(NameBuff); + add_pathsep((char *)NameBuff); STRCAT(NameBuff, "doc/*.??[tx]"); // Note: We cannot just do `&NameBuff` because it is a statically sized array @@ -5297,7 +5297,7 @@ void ex_helptags(exarg_T *eap) /* Get a list of all files in the help directory and in subdirectories. */ STRCPY(NameBuff, dirname); - add_pathsep(NameBuff); + add_pathsep((char *)NameBuff); STRCAT(NameBuff, "**"); // Note: We cannot just do `&NameBuff` because it is a statically sized array @@ -5419,7 +5419,7 @@ helptags_one ( * Do this before scanning through all the files. */ STRCPY(NameBuff, dir); - add_pathsep(NameBuff); + add_pathsep((char *)NameBuff); STRCAT(NameBuff, tagfname); fd_tags = mch_fopen((char *)NameBuff, "w"); if (fd_tags == NULL) { |