diff options
Diffstat (limited to 'src/nvim/quickfix.c')
-rw-r--r-- | src/nvim/quickfix.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/nvim/quickfix.c b/src/nvim/quickfix.c index a37a41caeb..7e22da6e7a 100644 --- a/src/nvim/quickfix.c +++ b/src/nvim/quickfix.c @@ -1085,7 +1085,7 @@ static int qf_get_fnum(char_u *directory, char_u *fname) slash_adjust(fname); #endif if (directory != NULL && !vim_isAbsName(fname)) { - ptr = concat_fnames(directory, fname, TRUE); + ptr = (char_u *)concat_fnames((char *)directory, (char *)fname, TRUE); /* * Here we check if the file really exists. * This should normally be true, but if make works without @@ -1096,7 +1096,7 @@ static int qf_get_fnum(char_u *directory, char_u *fname) xfree(ptr); directory = qf_guess_filepath(fname); if (directory) - ptr = concat_fnames(directory, fname, TRUE); + ptr = (char_u *)concat_fnames((char *)directory, (char *)fname, TRUE); else ptr = vim_strsave(fname); } @@ -1137,8 +1137,8 @@ static char_u *qf_push_dir(char_u *dirbuf, struct dir_stack_T **stackptr) (*stackptr)->dirname = NULL; while (ds_new) { xfree((*stackptr)->dirname); - (*stackptr)->dirname = concat_fnames(ds_new->dirname, dirbuf, - TRUE); + (*stackptr)->dirname = (char_u *)concat_fnames((char *)ds_new->dirname, + (char *)dirbuf, TRUE); if (os_isdir((*stackptr)->dirname)) break; @@ -1242,7 +1242,7 @@ static char_u *qf_guess_filepath(char_u *filename) fullname = NULL; while (ds_ptr) { xfree(fullname); - fullname = concat_fnames(ds_ptr->dirname, filename, TRUE); + fullname = (char_u *)concat_fnames((char *)ds_ptr->dirname, (char *)filename, TRUE); if (os_file_exists(fullname)) break; @@ -3546,7 +3546,7 @@ void ex_helpgrep(exarg_T *eap) copy_option_part(&p, NameBuff, MAXPATHL, ","); /* Find all "*.txt" and "*.??x" files in the "doc" directory. */ - add_pathsep(NameBuff); + add_pathsep((char *)NameBuff); STRCAT(NameBuff, "doc/*.\\(txt\\|??x\\)"); // Note: We cannot just do `&NameBuff` because it is a statically sized array |