changeset 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 f2b69b2eee0c
children d9b945841cba
files src/ops.c src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/ops.c
+++ b/src/ops.c
@@ -2077,7 +2077,7 @@ do_join(
 	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)
     {
--- a/src/version.c
+++ b/src/version.c
@@ -747,6 +747,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    881,
+/**/
     880,
 /**/
     879,