diff options
author | ZyX <kp-pav@yandex.ru> | 2016-11-05 01:03:44 +0300 |
---|---|---|
committer | ZyX <kp-pav@yandex.ru> | 2017-03-29 10:08:42 +0300 |
commit | 4bcee963471abd939bb9edd1709418e30be7290f (patch) | |
tree | ed4d8ef5d4526b538a2f6113c3f0fce28c94c2fe /src/nvim/fileio.c | |
parent | 9ed9af7e11e3a707f65abfeb1d02b029e39241ea (diff) | |
download | rneovim-4bcee963471abd939bb9edd1709418e30be7290f.tar.gz rneovim-4bcee963471abd939bb9edd1709418e30be7290f.tar.bz2 rneovim-4bcee963471abd939bb9edd1709418e30be7290f.zip |
*: Fix some Windows-specific warnings
Also fixed an error in path_fnamecmp().
Diffstat (limited to 'src/nvim/fileio.c')
-rw-r--r-- | src/nvim/fileio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/fileio.c b/src/nvim/fileio.c index 127efda65c..bd632b2755 100644 --- a/src/nvim/fileio.c +++ b/src/nvim/fileio.c @@ -5207,7 +5207,7 @@ void forward_slash(char_u *fname) { char_u *p; - if (path_with_url(fname)) { + if (path_with_url((const char *)fname)) { return; } for (p = fname; *p != NUL; p++) { |