# HG changeset patch # User Bram Moolenaar # Date 1547732711 -3600 # Node ID 69207f77754a52e8c60f9209082fc5e4e74aa34b # Parent d0016f2cc28f10a5a2160822d590e79a5cbb61d2 patch 8.1.0762: compiler warning commit https://github.com/vim/vim/commit/e40742526e6ea272c64ca393d7364e4023f4122c Author: Bram Moolenaar Date: Thu Jan 17 14:31:14 2019 +0100 patch 8.1.0762: compiler warning Problem: Compiler warning. Solution: Add type cast. (Mike Williams) diff --git a/src/channel.c b/src/channel.c --- a/src/channel.c +++ b/src/channel.c @@ -4064,7 +4064,7 @@ ch_raw_common(typval_T *argvars, typval_ else { text = tv_get_string_buf(&argvars[1], buf); - len = STRLEN(text); + len = (int)STRLEN(text); } channel = send_common(argvars, text, len, 0, eval, &opt, eval ? "ch_evalraw" : "ch_sendraw", &part_read); diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -796,6 +796,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 762, +/**/ 761, /**/ 760,