diff options
author | dundargoc <gocdundar@gmail.com> | 2022-11-12 13:34:14 +0100 |
---|---|---|
committer | dundargoc <gocdundar@gmail.com> | 2022-11-14 20:17:04 +0100 |
commit | 2755510f7800ff675a5fbe2cfaa59459ff3ab6b2 (patch) | |
tree | 13bc54ad9b6f2c724eb188a5e44753c92652c43f /src/nvim/path.c | |
parent | f8c671827710c6e9cca3bfd60c32098b2be8239a (diff) | |
download | rneovim-2755510f7800ff675a5fbe2cfaa59459ff3ab6b2.tar.gz rneovim-2755510f7800ff675a5fbe2cfaa59459ff3ab6b2.tar.bz2 rneovim-2755510f7800ff675a5fbe2cfaa59459ff3ab6b2.zip |
ci(windows): treat compiler warnings as errors
Reduce the warning level from 3 to 1 and fix all warnings.
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; |