From cb5ea1401a048b5c3e0e2c4d3afc72184f3604ad Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Tue, 21 Oct 2014 18:17:09 +0200 Subject: [PATCH] updated for version 7.4.484 Problem: Compiler warning on MS-Windows. (Ken Takata) Solution: Add type cast. --- src/getchar.c | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/getchar.c b/src/getchar.c index cc93a7dd8..cafa660c4 100644 --- a/src/getchar.c +++ b/src/getchar.c @@ -4530,7 +4530,7 @@ check_abbr(c, ptr, col, mincol) if (q != NULL) { vim_unescape_csi(q); - qlen = STRLEN(q); + qlen = (int)STRLEN(q); vim_free(q); } } diff --git a/src/version.c b/src/version.c index 7d1a1914b..e0efbb6c3 100644 --- a/src/version.c +++ b/src/version.c @@ -741,6 +741,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 484, /**/ 483, /**/ -- 2.40.0