commit | d6a77f95ee1e8ab69366d4f2a3412beef4cec914 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Mon Jun 01 19:14:12 2020 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Mon Jun 01 19:14:12 2020 +0200 |
tree | 3e6b6a3ff8189f79fc032780858017878d40a95e | |
parent | 109aece79d1b5f14f6a84ff2ac068cfffebeba80 [diff] [blame] |
patch 8.2.0881: compiler warning for argument type Problem: Compiler warning for argument type. Solution: Add type cast. (Mike Williams)
diff --git a/src/ops.c b/src/ops.c index 14d1ed4..ea71edb 100644 --- a/src/ops.c +++ b/src/ops.c
@@ -2077,7 +2077,7 @@ currsize = (int)STRLEN(curr); } - ml_replace_len(curwin->w_cursor.lnum, newp, newp_len, TRUE, FALSE); + ml_replace_len(curwin->w_cursor.lnum, newp, (colnr_T)newp_len, TRUE, FALSE); if (setmark && !cmdmod.lockmarks) {