# HG changeset patch # User Christian Brabandt # Date 1447179305 -3600 # Node ID 310925215e17e157fd941855286b62f0550f4758 # Parent a22e3bf151ca59704b0f13ac9960d4fd6ae012ae commit https://github.com/vim/vim/commit/1be2ed6c11671eabefa0fc8600fd2af6cd3963e8 Author: Bram Moolenaar Date: Tue Nov 10 19:11:58 2015 +0100 patch 7.4.917 Problem: Compiler warning for comparing signed and unsigned. Solution: Add a type cast. diff --git a/src/hangulin.c b/src/hangulin.c --- a/src/hangulin.c +++ b/src/hangulin.c @@ -1515,7 +1515,7 @@ convert_ks_to_3(src, fp, mp, lp) int i; if ((i = han_index(h, low)) >= 0 - && i < sizeof(ks_table1)/sizeof(ks_table1[0])) + && i < (int)(sizeof(ks_table1)/sizeof(ks_table1[0]))) { *fp = ks_table1[i][0]; *mp = ks_table1[i][1]; 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 */ /**/ + 917, +/**/ 916, /**/ 915,