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/ex_docmd.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/ex_docmd.c')
-rw-r--r-- | src/nvim/ex_docmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/ex_docmd.c b/src/nvim/ex_docmd.c index 5fe45154dc..289bb85f4d 100644 --- a/src/nvim/ex_docmd.c +++ b/src/nvim/ex_docmd.c @@ -8155,7 +8155,7 @@ eval_vars ( /* Still need to turn the fname into a full path. It is * postponed to avoid a delay when <afile> is not used. */ autocmd_fname_full = TRUE; - result = FullName_save(autocmd_fname, FALSE); + result = (char_u *)FullName_save((char *)autocmd_fname, FALSE); xfree(autocmd_fname); autocmd_fname = result; } |