diff options
author | James McCoy <jamessan@jamessan.com> | 2018-07-27 10:06:46 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-27 10:06:46 -0400 |
commit | e42688fcf38013f9c4eef8f97f92e686a858ffad (patch) | |
tree | 73b3f1787ab7b92479508fa24bbf99debc52fd87 /src/nvim/path.c | |
parent | 5f15788dc3ac1ea7906673eacc9cf9bdb1f14212 (diff) | |
parent | 6285b518d4c56537991feff899b74274766086ca (diff) | |
download | rneovim-e42688fcf38013f9c4eef8f97f92e686a858ffad.tar.gz rneovim-e42688fcf38013f9c4eef8f97f92e686a858ffad.tar.bz2 rneovim-e42688fcf38013f9c4eef8f97f92e686a858ffad.zip |
Merge pull request #8769 from janlazo/vim-8.0.1502
[RDY] vim-patch:8.0.{1502,1512,1622}
Diffstat (limited to 'src/nvim/path.c')
-rw-r--r-- | src/nvim/path.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nvim/path.c b/src/nvim/path.c index d5c636ff08..0b90329686 100644 --- a/src/nvim/path.c +++ b/src/nvim/path.c @@ -52,7 +52,8 @@ /// @param s2 Second file name. /// @param checkname When both files don't exist, only compare their names. /// @return Enum of type FileComparison. @see FileComparison. -FileComparison path_full_compare(char_u *s1, char_u *s2, int checkname) +FileComparison path_full_compare(char_u *const s1, char_u *const s2, + const bool checkname) { assert(s1 && s2); char_u exp1[MAXPATHL]; |