# HG changeset patch # User Christian Brabandt # Date 1441117803 -7200 # Node ID 094c8ccdc279bc52e768a579e86b32a24e2b6822 # Parent 95f9418597e0dc262cef05635bf2d6ecd4afcd06 commit https://github.com/vim/vim/commit/5df1ed2de3fa9dcace996b9a0a4c9b3cea79cf1e Author: Bram Moolenaar Date: Tue Sep 1 16:25:34 2015 +0200 patch 7.4.845 Problem: Compiler warning for possible loss of data. Solution: Add a type cast. (Erich Ritz) diff --git a/src/misc1.c b/src/misc1.c --- a/src/misc1.c +++ b/src/misc1.c @@ -3985,7 +3985,7 @@ expand_env_esc(srcp, dst, dstlen, esc, o len = dstlen; vim_strncpy(dst, var, len); dst += len; - dstlen -= len; + dstlen -= (int)len; continue; } #endif diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -742,6 +742,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 845, +/**/ 844, /**/ 843,