aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/path.c
diff options
context:
space:
mode:
authorBjörn Linse <bjorn.linse@gmail.com>2017-05-29 20:33:00 +0200
committerGitHub <noreply@github.com>2017-05-29 20:33:00 +0200
commit1b7a9bf4d2028e75a140e3b314901e58684f2b1a (patch)
tree2860c9db4994bc363a8a1ee036dd9dc2ad73b83b /src/nvim/path.c
parent9cc185dc6d9d665fe5ba3702a0a8af09151fe5c4 (diff)
parent5a151555c8dce70bbf235e7f6d5bd1ced5e7c46c (diff)
downloadrneovim-1b7a9bf4d2028e75a140e3b314901e58684f2b1a.tar.gz
rneovim-1b7a9bf4d2028e75a140e3b314901e58684f2b1a.tar.bz2
rneovim-1b7a9bf4d2028e75a140e3b314901e58684f2b1a.zip
Merge pull request #6594 from bfredl/sockopen
connect to socket (RPC only for the moment)
Diffstat (limited to 'src/nvim/path.c')
-rw-r--r--src/nvim/path.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/path.c b/src/nvim/path.c
index 9162b6da4d..f2339c8046 100644
--- a/src/nvim/path.c
+++ b/src/nvim/path.c
@@ -1715,7 +1715,7 @@ int vim_FullName(const char *fname, char *buf, size_t len, bool force)
///
/// @param fname is the filename to expand
/// @return [allocated] Full path (NULL for failure).
-char *fix_fname(char *fname)
+char *fix_fname(const char *fname)
{
#ifdef UNIX
return FullName_save(fname, true);