1
0
forked from aniani/vim

updated for version 7.3.525

Problem:    Compiler warning on 64 bit MS-Windows.
Solution:   Add type cast. (Mike Williams)
This commit is contained in:
Bram Moolenaar 2012-05-25 11:02:41 +02:00
parent 1763969e5c
commit 17bd9dc2bd
2 changed files with 3 additions and 1 deletions

View File

@ -5263,7 +5263,7 @@ get_history_arg(xp, idx)
{
static char_u compl[2] = { NUL, NUL };
char *short_names = ":=@>?/";
int short_names_count = STRLEN(short_names);
int short_names_count = (int)STRLEN(short_names);
int history_name_count = sizeof(history_names) / sizeof(char *) - 1;
if (idx < short_names_count)

View File

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