mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
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:
@@ -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,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user