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:
parent
1763969e5c
commit
17bd9dc2bd
@ -5263,7 +5263,7 @@ get_history_arg(xp, idx)
|
|||||||
{
|
{
|
||||||
static char_u compl[2] = { NUL, NUL };
|
static char_u compl[2] = { NUL, NUL };
|
||||||
char *short_names = ":=@>?/";
|
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;
|
int history_name_count = sizeof(history_names) / sizeof(char *) - 1;
|
||||||
|
|
||||||
if (idx < short_names_count)
|
if (idx < short_names_count)
|
||||||
|
@ -714,6 +714,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 */
|
||||||
|
/**/
|
||||||
|
525,
|
||||||
/**/
|
/**/
|
||||||
524,
|
524,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user