diff options
Diffstat (limited to 'src/nvim/buffer.c')
-rw-r--r-- | src/nvim/buffer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/buffer.c b/src/nvim/buffer.c index 41ab7ae13d..c22aaec3df 100644 --- a/src/nvim/buffer.c +++ b/src/nvim/buffer.c @@ -276,7 +276,7 @@ int open_buffer(bool read_stdin, exarg_T *eap, int flags_arg) || (S_ISCHR(perm) && is_dev_fd_file(curbuf->b_ffname)) # endif - )) { // NOLINT(whitespace/parens) + )) { read_fifo = true; } if (read_fifo) { @@ -2145,7 +2145,7 @@ buf_T *buflist_findname_exp(char *fname) #else false #endif - ); // NOLINT(whitespace/parens) + ); if (ffname != NULL) { buf = buflist_findname(ffname); xfree(ffname); |