diff options
author | Mark Bainter <mbainter+github@gmail.com> | 2015-04-20 14:44:32 +0000 |
---|---|---|
committer | Mark Bainter <mbainter+github@gmail.com> | 2015-05-06 21:25:04 -0500 |
commit | 80180bf94e84df7d8732a786065c8e3e3dd17b09 (patch) | |
tree | 7ae2667e816bced39ba287086a74a222a9968827 /src/nvim/file_search.c | |
parent | 657fd619734b11954412b873d897e943fbbec6d9 (diff) | |
download | rneovim-80180bf94e84df7d8732a786065c8e3e3dd17b09.tar.gz rneovim-80180bf94e84df7d8732a786065c8e3e3dd17b09.tar.bz2 rneovim-80180bf94e84df7d8732a786065c8e3e3dd17b09.zip |
Remove char_u: FullName_save()
Diffstat (limited to 'src/nvim/file_search.c')
-rw-r--r-- | src/nvim/file_search.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/file_search.c b/src/nvim/file_search.c index 32e4bb4a9e..855de6595f 100644 --- a/src/nvim/file_search.c +++ b/src/nvim/file_search.c @@ -313,7 +313,7 @@ vim_findfile_init ( if (!vim_isAbsName(rel_fname) && len + 1 < MAXPATHL) { /* Make the start dir an absolute path name. */ STRLCPY(ff_expand_buffer, rel_fname, len + 1); - search_ctx->ffsc_start_dir = FullName_save(ff_expand_buffer, FALSE); + search_ctx->ffsc_start_dir = (char_u *)FullName_save((char *)ff_expand_buffer, FALSE); } else search_ctx->ffsc_start_dir = vim_strnsave(rel_fname, len); if (*++path != NUL) |