diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2021-10-19 06:51:42 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-19 06:51:42 -0700 |
commit | aac15cf4ade5cb67000abe171ff8e2060b78907e (patch) | |
tree | cc91a6759c739044a5a338bc938cfa033d7273ac /src/nvim/file_search.c | |
parent | 29b718d04c474433977e952ac7f3561041f3bda0 (diff) | |
parent | 6059784770c4c88fb6fe528b9f7634192fa1164e (diff) | |
download | rneovim-aac15cf4ade5cb67000abe171ff8e2060b78907e.tar.gz rneovim-aac15cf4ade5cb67000abe171ff8e2060b78907e.tar.bz2 rneovim-aac15cf4ade5cb67000abe171ff8e2060b78907e.zip |
Merge #16000 refactor: uncrustify
Diffstat (limited to 'src/nvim/file_search.c')
-rw-r--r-- | src/nvim/file_search.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/nvim/file_search.c b/src/nvim/file_search.c index 9eab579243..fca62353d5 100644 --- a/src/nvim/file_search.c +++ b/src/nvim/file_search.c @@ -642,8 +642,8 @@ char_u *vim_findfile(void *search_ctx_arg) if (stackp->ffs_filearray == NULL && ff_check_visited(&search_ctx->ffsc_dir_visited_list ->ffvl_visited_list, - stackp->ffs_fix_path - , stackp->ffs_wc_path + stackp->ffs_fix_path, + stackp->ffs_wc_path ) == FAIL) { #ifdef FF_VERBOSE if (p_verbose >= 5) { @@ -840,15 +840,15 @@ char_u *vim_findfile(void *search_ctx_arg) == os_isdir(file_path))))) #ifndef FF_VERBOSE && (ff_check_visited(&search_ctx->ffsc_visited_list->ffvl_visited_list, - file_path - , (char_u *)"" + file_path, + (char_u *)"" ) == OK) #endif ) { #ifdef FF_VERBOSE if (ff_check_visited(&search_ctx->ffsc_visited_list->ffvl_visited_list, - file_path - , (char_u *)"" + file_path, + (char_u *)"" ) == FAIL) { if (p_verbose >= 5) { verbose_enter_scroll(); |