]> granicus.if.org Git - vim/commitdiff
patch 7.4.917 v7.4.917
authorBram Moolenaar <Bram@vim.org>
Tue, 10 Nov 2015 18:11:58 +0000 (19:11 +0100)
committerBram Moolenaar <Bram@vim.org>
Tue, 10 Nov 2015 18:11:58 +0000 (19:11 +0100)
Problem:    Compiler warning for comparing signed and unsigned.
Solution:   Add a type cast.

src/hangulin.c
src/version.c

index f02cad8174bea1beff336a7cdc59380bcc9d3a53..4e1a7f80145767198d67d662fe188f3489adf05c 100644 (file)
@@ -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];
index 8effc142bc3c457b5263d374087906c1be8c92b6..0255d52011a744141120d2ba34496eceb3542d9c 100644 (file)
@@ -741,6 +741,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    917,
 /**/
     916,
 /**/