diff options
author | bfredl <bjorn.linse@gmail.com> | 2022-11-15 10:35:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-15 10:35:25 +0100 |
commit | c6c265a86ce86e99fdb6d4375219b56dc293c832 (patch) | |
tree | 33497a1fd8a57b497562f3343e0d1a99727467c7 /src/nvim/path.c | |
parent | 9d2a6cd11e092de838939ce993e8d18f5c9584b7 (diff) | |
parent | 2755510f7800ff675a5fbe2cfaa59459ff3ab6b2 (diff) | |
download | rneovim-c6c265a86ce86e99fdb6d4375219b56dc293c832.tar.gz rneovim-c6c265a86ce86e99fdb6d4375219b56dc293c832.tar.bz2 rneovim-c6c265a86ce86e99fdb6d4375219b56dc293c832.zip |
Merge pull request #21031 from dundargoc/fix/windows
ci(windows): treat compiler warnings as errors
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 1413000680..007f55294b 100644 --- a/src/nvim/path.c +++ b/src/nvim/path.c @@ -1867,7 +1867,7 @@ char *fix_fname(const char *fname) fname = xstrdup(fname); # ifdef USE_FNAME_CASE - path_fix_case(fname); // set correct case for file name + path_fix_case((char *)fname); // set correct case for file name # endif return (char *)fname; |