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/if_cscope.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/if_cscope.c')
-rw-r--r-- | src/nvim/if_cscope.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/if_cscope.c b/src/nvim/if_cscope.c index 093ca238f1..44da4ec223 100644 --- a/src/nvim/if_cscope.c +++ b/src/nvim/if_cscope.c @@ -1039,8 +1039,8 @@ static bool cs_find_common(char *opt, char *pat, int forceit, int verbose, bool wp = curwin; } // '-' starts a new error list - if (qf_init(wp, tmp, (char_u *)"%f%*\\t%l%*\\t%m", - *qfpos == '-', cmdline, NULL) > 0) { + if (qf_init(wp, (char *)tmp, "%f%*\\t%l%*\\t%m", + *qfpos == '-', (char *)cmdline, NULL) > 0) { if (postponed_split != 0) { (void)win_split(postponed_split > 0 ? postponed_split : 0, postponed_split_flags); |