aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/buffer.c
diff options
context:
space:
mode:
authorMark Bainter <mbainter+github@gmail.com>2015-04-20 14:44:32 +0000
committerMark Bainter <mbainter+github@gmail.com>2015-05-06 21:25:04 -0500
commit80180bf94e84df7d8732a786065c8e3e3dd17b09 (patch)
tree7ae2667e816bced39ba287086a74a222a9968827 /src/nvim/buffer.c
parent657fd619734b11954412b873d897e943fbbec6d9 (diff)
downloadrneovim-80180bf94e84df7d8732a786065c8e3e3dd17b09.tar.gz
rneovim-80180bf94e84df7d8732a786065c8e3e3dd17b09.tar.bz2
rneovim-80180bf94e84df7d8732a786065c8e3e3dd17b09.zip
Remove char_u: FullName_save()
Diffstat (limited to 'src/nvim/buffer.c')
-rw-r--r--src/nvim/buffer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/buffer.c b/src/nvim/buffer.c
index 395b20b219..eadee8465f 100644
--- a/src/nvim/buffer.c
+++ b/src/nvim/buffer.c
@@ -1661,7 +1661,7 @@ buf_T *buflist_findname_exp(char_u *fname)
buf_T *buf = NULL;
/* First make the name into a full path name */
- ffname = FullName_save(fname,
+ ffname = (char_u *)FullName_save((char *)fname,
#ifdef UNIX
TRUE /* force expansion, get rid of symbolic links */
#else