Skip to content

Commit 1be2ed6

Browse files
committed
patch 7.4.917
Problem: Compiler warning for comparing signed and unsigned. Solution: Add a type cast.
1 parent 8648357 commit 1be2ed6

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

src/hangulin.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1515,7 +1515,7 @@ convert_ks_to_3(src, fp, mp, lp)
15151515
int i;
15161516

15171517
if ((i = han_index(h, low)) >= 0
1518-
&& i < sizeof(ks_table1)/sizeof(ks_table1[0]))
1518+
&& i < (int)(sizeof(ks_table1)/sizeof(ks_table1[0])))
15191519
{
15201520
*fp = ks_table1[i][0];
15211521
*mp = ks_table1[i][1];

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -741,6 +741,8 @@ static char *(features[]) =
741741

742742
static int included_patches[] =
743743
{ /* Add new patch number below this line */
744+
/**/
745+
917,
744746
/**/
745747
916,
746748
/**/

0 commit comments

Comments
 (0)