diff options
author | Mark Bainter <mbainter+github@gmail.com> | 2015-04-20 15:28:37 +0000 |
---|---|---|
committer | Mark Bainter <mbainter+github@gmail.com> | 2015-05-06 21:34:19 -0500 |
commit | c55e488079d3629fbfe16580262cd9a6f3d5eeae (patch) | |
tree | 4652af8c5e68591a3527d42ab6f0350060d3b8b6 /src/nvim/if_cscope.c | |
parent | 477b6a2c447dc10c068b13aab9a533a51c3284af (diff) | |
download | rneovim-c55e488079d3629fbfe16580262cd9a6f3d5eeae.tar.gz rneovim-c55e488079d3629fbfe16580262cd9a6f3d5eeae.tar.bz2 rneovim-c55e488079d3629fbfe16580262cd9a6f3d5eeae.zip |
Remove char_u: concat_fnames()
Diffstat (limited to 'src/nvim/if_cscope.c')
-rw-r--r-- | src/nvim/if_cscope.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/if_cscope.c b/src/nvim/if_cscope.c index a7052149e0..b5751f0a6e 100644 --- a/src/nvim/if_cscope.c +++ b/src/nvim/if_cscope.c @@ -2054,7 +2054,7 @@ static char *cs_resolve_file(int i, char *name) } else if (csdir != NULL && csinfo[i].fname != NULL && *csdir != NUL) { /* Check for csdir to be non empty to avoid empty path concatenated to * cscope output. */ - fullname = (char *)concat_fnames(csdir, (char_u *)name, TRUE); + fullname = concat_fnames((char *)csdir, name, TRUE); } else { fullname = xstrdup(name); } |