diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/path.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/path.c b/src/nvim/path.c index cefa2dcbf8..9bdf03dacf 100644 --- a/src/nvim/path.c +++ b/src/nvim/path.c @@ -1563,7 +1563,7 @@ int vim_isAbsName(char_u *name) /// @param force is a flag to force expanding even if the path is absolute /// /// @return FAIL for failure, OK otherwise -int vim_FullName(char *fname, char *buf, int len, bool force) +int vim_FullName(const char *fname, char *buf, int len, bool force) FUNC_ATTR_NONNULL_ARG(1) { int retval = OK; |