comparison src/ops.c @ 20655:707b21559848 v8.2.0881

patch 8.2.0881: compiler warning for argument type Commit: https://github.com/vim/vim/commit/d6a77f95ee1e8ab69366d4f2a3412beef4cec914 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Jun 1 19:14:12 2020 +0200 patch 8.2.0881: compiler warning for argument type Problem: Compiler warning for argument type. Solution: Add type cast. (Mike Williams)
author Bram Moolenaar <Bram@vim.org>
date Mon, 01 Jun 2020 19:15:04 +0200
parents 9edb439adbea
children cea8ae407452
comparison
equal deleted inserted replaced
20654:f2b69b2eee0c 20655:707b21559848
2075 if (insert_space && t > 1) 2075 if (insert_space && t > 1)
2076 curr = skipwhite(curr); 2076 curr = skipwhite(curr);
2077 currsize = (int)STRLEN(curr); 2077 currsize = (int)STRLEN(curr);
2078 } 2078 }
2079 2079
2080 ml_replace_len(curwin->w_cursor.lnum, newp, newp_len, TRUE, FALSE); 2080 ml_replace_len(curwin->w_cursor.lnum, newp, (colnr_T)newp_len, TRUE, FALSE);
2081 2081
2082 if (setmark && !cmdmod.lockmarks) 2082 if (setmark && !cmdmod.lockmarks)
2083 { 2083 {
2084 // Set the '] mark. 2084 // Set the '] mark.
2085 curwin->w_buffer->b_op_end.lnum = curwin->w_cursor.lnum; 2085 curwin->w_buffer->b_op_end.lnum = curwin->w_cursor.lnum;