diff options
author | Dundar Goc <gocdundar@gmail.com> | 2022-04-25 09:08:52 +0200 |
---|---|---|
committer | Dundar Goc <gocdundar@gmail.com> | 2022-04-25 13:32:01 +0200 |
commit | 4aae0eebb24371aefe4eb71baccf266336684398 (patch) | |
tree | e1fd4c2152fbb469eb59951cd41e28e5a7368c09 /src/nvim/main.c | |
parent | 89df042a89c8c94cef37a1b1b26ada673bab78d0 (diff) | |
download | rneovim-4aae0eebb24371aefe4eb71baccf266336684398.tar.gz rneovim-4aae0eebb24371aefe4eb71baccf266336684398.tar.bz2 rneovim-4aae0eebb24371aefe4eb71baccf266336684398.zip |
refactor: replace char_u variables and functions with char
Work on https://github.com/neovim/neovim/issues/459
Diffstat (limited to 'src/nvim/main.c')
-rw-r--r-- | src/nvim/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/main.c b/src/nvim/main.c index 6ea1cb0875..35d01f2407 100644 --- a/src/nvim/main.c +++ b/src/nvim/main.c @@ -1510,7 +1510,7 @@ static void handle_quickfix(mparm_T *paramp) set_string_option_direct("ef", -1, paramp->use_ef, OPT_FREE, SID_CARG); } vim_snprintf((char *)IObuff, IOSIZE, "cfile %s", p_ef); - if (qf_init(NULL, p_ef, p_efm, true, IObuff, p_menc) < 0) { + if (qf_init(NULL, (char *)p_ef, p_efm, true, (char *)IObuff, (char *)p_menc) < 0) { msg_putchar('\n'); os_exit(3); } |