diff options
Diffstat (limited to 'src/nvim/path.c')
-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 8dad76dd71..152154e5f4 100644 --- a/src/nvim/path.c +++ b/src/nvim/path.c @@ -1550,7 +1550,7 @@ int path_with_url(const char *fname) /* * Return TRUE if "name" is a full (absolute) path name or URL. */ -int vim_isAbsName(char_u *name) +bool vim_isAbsName(char_u *name) { return path_with_url((char *)name) != 0 || path_is_absolute_path(name); } |