Skip to content
Snippets Groups Projects
Commit 5c962630 authored by Bram Moolenaar's avatar Bram Moolenaar
Browse files

updated for version 7.3.832

Problem:    Compiler warning.
Solution:   Add type cast. (Mike Williams)
parent 26402cb2
No related branches found
No related tags found
No related merge requests found
......@@ -728,6 +728,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
832,
/**/
831,
/**/
......@@ -2466,7 +2468,7 @@ list_features()
* width */
for (i = 0; features[i] != NULL; ++i)
{
int l = STRLEN(features[i]);
int l = (int)STRLEN(features[i]);
if (l > width)
width = l;
......@@ -2518,6 +2520,7 @@ list_features()
msg_putchar('\n');
}
}
void
list_version()
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment