0
0
mirror of https://github.com/vim/vim.git synced 2025-07-26 11:04:33 -04:00

patch 7.4.917

Problem:    Compiler warning for comparing signed and unsigned.
Solution:   Add a type cast.
This commit is contained in:
Bram Moolenaar 2015-11-10 19:11:58 +01:00
parent 8648357841
commit 1be2ed6c11
2 changed files with 3 additions and 1 deletions

View 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];

View File

@ -741,6 +741,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
917,
/**/
916,
/**/