mirror of
https://github.com/vim/vim.git
synced 2025-10-06 05:44:14 -04:00
updated for version 7.3.832
Problem: Compiler warning. Solution: Add type cast. (Mike Williams)
This commit is contained in:
@@ -728,6 +728,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
832,
|
||||||
/**/
|
/**/
|
||||||
831,
|
831,
|
||||||
/**/
|
/**/
|
||||||
@@ -2466,7 +2468,7 @@ list_features()
|
|||||||
* width */
|
* width */
|
||||||
for (i = 0; features[i] != NULL; ++i)
|
for (i = 0; features[i] != NULL; ++i)
|
||||||
{
|
{
|
||||||
int l = STRLEN(features[i]);
|
int l = (int)STRLEN(features[i]);
|
||||||
|
|
||||||
if (l > width)
|
if (l > width)
|
||||||
width = l;
|
width = l;
|
||||||
@@ -2518,6 +2520,7 @@ list_features()
|
|||||||
msg_putchar('\n');
|
msg_putchar('\n');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
list_version()
|
list_version()
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user