# HG changeset patch # User Christian Brabandt # Date 1514904306 -3600 # Node ID fe7d576a3d3febc58d22fab6a27771f5f8f964ae # Parent 50a2bb503137c203a4c80314ff66478dce12ea68 patch 8.0.1428: compiler warning on 64 bit MS-Windows system commit https://github.com/vim/vim/commit/200ea8ffaa90e1ccc156b24ee097be87acdd5214 Author: Bram Moolenaar Date: Tue Jan 2 15:37:46 2018 +0100 patch 8.0.1428: compiler warning on 64 bit MS-Windows system Problem: Compiler warning on 64 bit MS-Windows system. Solution: Change type from "int" to "size_t". (Mike Williams) diff --git a/src/ex_getln.c b/src/ex_getln.c --- a/src/ex_getln.c +++ b/src/ex_getln.c @@ -180,7 +180,7 @@ abandon_cmdline(void) static int empty_pattern(char_u *p) { - int n = STRLEN(p); + size_t n = STRLEN(p); /* remove trailing \v and the like */ while (n >= 2 && p[n - 2] == '\\' diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -772,6 +772,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1428, +/**/ 1427, /**/ 1426,