mirror of
https://github.com/neovim/neovim.git
synced 2025-09-17 00:38:17 +00:00
refactor: replace char_u with char
Work on https://github.com/neovim/neovim/issues/459
This commit is contained in:
@@ -3119,7 +3119,7 @@ void qf_list(exarg_T *eap)
|
||||
}
|
||||
int idx1 = 1;
|
||||
int idx2 = -1;
|
||||
if (!get_list_range((char_u **)&arg, &idx1, &idx2) || *arg != NUL) {
|
||||
if (!get_list_range(&arg, &idx1, &idx2) || *arg != NUL) {
|
||||
semsg(_(e_trailing_arg), arg);
|
||||
return;
|
||||
}
|
||||
|
Reference in New Issue
Block a user