aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/os/env.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2018-03-24 16:07:11 +0100
committerGitHub <noreply@github.com>2018-03-24 16:07:11 +0100
commit1b61167373420440535cb975804fd9e728025011 (patch)
treebdd88851fad1197bc0965647a8525e0fb86b1841 /src/nvim/os/env.c
parent84a25770ac4b1c18f0e6bd1e17bdda7eb3c6afa0 (diff)
parent0ecf7e3a2d3bf4c8062ebf1d462a16d716a37352 (diff)
downloadrneovim-1b61167373420440535cb975804fd9e728025011.tar.gz
rneovim-1b61167373420440535cb975804fd9e728025011.tar.bz2
rneovim-1b61167373420440535cb975804fd9e728025011.zip
Merge #8168 'refactor: rename some functions'
Diffstat (limited to 'src/nvim/os/env.c')
-rw-r--r--src/nvim/os/env.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/os/env.c b/src/nvim/os/env.c
index 999fcd434a..3fcb9415c7 100644
--- a/src/nvim/os/env.c
+++ b/src/nvim/os/env.c
@@ -886,7 +886,7 @@ bool os_setenv_append_path(const char *fname)
// No prescribed maximum on unix.
# define MAX_ENVPATHLEN INT_MAX
#endif
- if (!path_is_absolute_path((char_u *)fname)) {
+ if (!path_is_absolute((char_u *)fname)) {
internal_error("os_setenv_append_path()");
return false;
}