0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

patch 8.2.3460: some type casts are not needed

Problem:    Some type casts are not needed.
Solution:   Remove unnecessary type casts. (closes #8934)
This commit is contained in:
=?UTF-8?q?Dundar=20G=C3=B6c?=
2021-10-02 11:26:51 +01:00
committed by Bram Moolenaar
parent 51491adfa8
commit dfa5e464d4
9 changed files with 20 additions and 18 deletions

View File

@@ -103,7 +103,7 @@ read_buffer(
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)
{