Skip to content

Commit 616fca5

Browse files
committed
updated for version 7.3.832
Problem: Compiler warning. Solution: Add type cast. (Mike Williams)
1 parent dc0db92 commit 616fca5

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/version.c

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -728,6 +728,8 @@ static char *(features[]) =
728728

729729
static int included_patches[] =
730730
{ /* Add new patch number below this line */
731+
/**/
732+
832,
731733
/**/
732734
831,
733735
/**/
@@ -2466,7 +2468,7 @@ list_features()
24662468
* width */
24672469
for (i = 0; features[i] != NULL; ++i)
24682470
{
2469-
int l = STRLEN(features[i]);
2471+
int l = (int)STRLEN(features[i]);
24702472

24712473
if (l > width)
24722474
width = l;
@@ -2518,6 +2520,7 @@ list_features()
25182520
msg_putchar('\n');
25192521
}
25202522
}
2523+
25212524
void
25222525
list_version()
25232526
{

0 commit comments

Comments
 (0)