diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2021-10-03 03:04:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-02 18:04:21 -0700 |
commit | ad1c42a97d673b9fd2bf64b2382c87fbe65dfc73 (patch) | |
tree | 1dc5d77ed6ba987d0c6af8e492038ad7873e62b4 /src/nvim/buffer.c | |
parent | 4449297d12b70f5e6a65365e39aacf5e42303ffd (diff) | |
download | rneovim-ad1c42a97d673b9fd2bf64b2382c87fbe65dfc73.tar.gz rneovim-ad1c42a97d673b9fd2bf64b2382c87fbe65dfc73.tar.bz2 rneovim-ad1c42a97d673b9fd2bf64b2382c87fbe65dfc73.zip |
vim-patch:8.2.3460: some type casts are not needed #15868
Problem: Some type casts are not needed.
Solution: Remove unnecessary type casts. (closes vim/vim#8934)
https://github.com/vim/vim/commit/dfa5e464d459f84200a73d178f1ecefe75bbe511
Diffstat (limited to 'src/nvim/buffer.c')
-rw-r--r-- | src/nvim/buffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/buffer.c b/src/nvim/buffer.c index 3c86f55260..20dd94622f 100644 --- a/src/nvim/buffer.c +++ b/src/nvim/buffer.c @@ -117,7 +117,7 @@ static int read_buffer(int read_stdin, exarg_T *eap, int flags) line_count = curbuf->b_ml.ml_line_count; retval = readfile(read_stdin ? NULL : curbuf->b_ffname, read_stdin ? NULL : curbuf->b_fname, - (linenr_T)line_count, (linenr_T)0, (linenr_T)MAXLNUM, eap, + line_count, (linenr_T)0, (linenr_T)MAXLNUM, eap, flags | READ_BUFFER); if (retval == OK) { // Delete the binary lines. |