diff options
author | bfredl <bjorn.linse@gmail.com> | 2022-03-11 15:07:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-11 15:07:49 +0100 |
commit | c2ab922f0a6ac2f11ab3d706ca5bc097fdac4dd7 (patch) | |
tree | 58a30205195dc158140f6cc4501349cb819ecfe0 /src/nvim/quickfix.c | |
parent | c3a6ff6aa3be259255976b1178dd07ac876ff124 (diff) | |
parent | 7e3bdc75e44b9139d8afaea4381b53ae78b15746 (diff) | |
download | rneovim-c2ab922f0a6ac2f11ab3d706ca5bc097fdac4dd7.tar.gz rneovim-c2ab922f0a6ac2f11ab3d706ca5bc097fdac4dd7.tar.bz2 rneovim-c2ab922f0a6ac2f11ab3d706ca5bc097fdac4dd7.zip |
Merge pull request #17663 from dundargoc/refactor/uncrustify
refactor: apply uncrustify
Diffstat (limited to 'src/nvim/quickfix.c')
-rw-r--r-- | src/nvim/quickfix.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/nvim/quickfix.c b/src/nvim/quickfix.c index 7e29aed51b..bddbd04af9 100644 --- a/src/nvim/quickfix.c +++ b/src/nvim/quickfix.c @@ -5421,9 +5421,8 @@ static int vgr_process_args(exarg_T *eap, vgr_args_T *args) /// Search for a pattern in a list of files and populate the quickfix list with /// the matches. -static int vgr_process_files(win_T *wp, qf_info_T *qi, vgr_args_T *cmd_args, - bool *redraw_for_dummy, buf_T **first_match_buf, - char_u **target_dir) +static int vgr_process_files(win_T *wp, qf_info_T *qi, vgr_args_T *cmd_args, bool *redraw_for_dummy, + buf_T **first_match_buf, char_u **target_dir) { int status = FAIL; unsigned save_qfid = qf_get_curlist(qi)->qf_id; |