diff options
author | Dundar Göc <gocdundar@gmail.com> | 2022-03-09 21:19:37 +0100 |
---|---|---|
committer | Dundar Göc <gocdundar@gmail.com> | 2022-03-10 09:14:12 +0100 |
commit | 7e3bdc75e44b9139d8afaea4381b53ae78b15746 (patch) | |
tree | 47547273268e887fa59b5529d6afde46772a7254 /src/nvim/quickfix.c | |
parent | d0cb8744d84822209edd0ac242f2400c784e6dc5 (diff) | |
download | rneovim-7e3bdc75e44b9139d8afaea4381b53ae78b15746.tar.gz rneovim-7e3bdc75e44b9139d8afaea4381b53ae78b15746.tar.bz2 rneovim-7e3bdc75e44b9139d8afaea4381b53ae78b15746.zip |
refactor(uncrustify): format all c files
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; |