changeset 7216:310925215e17 v7.4.917

commit https://github.com/vim/vim/commit/1be2ed6c11671eabefa0fc8600fd2af6cd3963e8 Author: Bram Moolenaar <Bram@vim.org> 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.
author Christian Brabandt <cb@256bit.org>
date Tue, 10 Nov 2015 19:15:05 +0100
parents a22e3bf151ca
children cbdc50315558
files src/hangulin.c src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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];
--- 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,