diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2021-09-20 18:35:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-20 09:35:41 -0700 |
commit | f4ca3a29ddcb0c98e8e09c45a6342af709f8cc45 (patch) | |
tree | 054d1d35a890843504412b859249f0b0b0b4b810 /src/nvim/fileio.c | |
parent | 1f8c91bf729707fdb005292aecca8dd79538f4a5 (diff) | |
download | rneovim-f4ca3a29ddcb0c98e8e09c45a6342af709f8cc45.tar.gz rneovim-f4ca3a29ddcb0c98e8e09c45a6342af709f8cc45.tar.bz2 rneovim-f4ca3a29ddcb0c98e8e09c45a6342af709f8cc45.zip |
refactor: reformat with uncrustify #15736
* fix function parameter comments
* remove space after star in function names
Diffstat (limited to 'src/nvim/fileio.c')
-rw-r--r-- | src/nvim/fileio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/fileio.c b/src/nvim/fileio.c index b7dbda3d99..31af47999b 100644 --- a/src/nvim/fileio.c +++ b/src/nvim/fileio.c @@ -5538,8 +5538,8 @@ bool match_file_list(char_u *list, char_u *sfname, char_u *ffname) /// @param no_bslash Don't use a backward slash as pathsep /// /// @return NULL on failure. -char_u * file_pat_to_reg_pat(const char_u *pat, const char_u *pat_end, char *allow_dirs, - int no_bslash) +char_u *file_pat_to_reg_pat(const char_u *pat, const char_u *pat_end, char *allow_dirs, + int no_bslash) FUNC_ATTR_NONNULL_ARG(1) { const char_u *endp; |