commit | dfa5e464d459f84200a73d178f1ecefe75bbe511 | [log] [tgz] |
---|---|---|
author | =?UTF-8?q?Dundar=20G=C3=B6c?= <gocdundar@gmail.com> | Sat Oct 02 11:26:51 2021 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Sat Oct 02 11:26:51 2021 +0100 |
tree | 2bf8a9283ea1bb99757758918884b9a92f2db659 | |
parent | 51491adfa86fd66a857cd7ec50d0b57dbdf3da59 [diff] [blame] |
patch 8.2.3460: some type casts are not needed Problem: Some type casts are not needed. Solution: Remove unnecessary type casts. (closes #8934)
diff --git a/src/move.c b/src/move.c index ea86b88..9e3a714 100644 --- a/src/move.c +++ b/src/move.c
@@ -1028,7 +1028,7 @@ // column sbr = get_showbreak_value(curwin); if (*sbr && *ml_get_cursor() == NUL - && curwin->w_wcol == (int)vim_strsize(sbr)) + && curwin->w_wcol == vim_strsize(sbr)) curwin->w_wcol = 0; #endif }