forked from aniani/vim
updated for version 7.4.058
Problem: Warnings on 64 bit Windows. Solution: Add type casts. (Mike Williams)
This commit is contained in:
@@ -5009,7 +5009,7 @@ format_lines(line_count, avoid_fex)
|
|||||||
if (second_indent > 0) /* the "leader" for FO_Q_SECOND */
|
if (second_indent > 0) /* the "leader" for FO_Q_SECOND */
|
||||||
{
|
{
|
||||||
char_u *p = ml_get_curline();
|
char_u *p = ml_get_curline();
|
||||||
int indent = skipwhite(p) - p;
|
int indent = (int)(skipwhite(p) - p);
|
||||||
|
|
||||||
if (indent > 0)
|
if (indent > 0)
|
||||||
{
|
{
|
||||||
|
@@ -738,6 +738,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 */
|
||||||
|
/**/
|
||||||
|
58,
|
||||||
/**/
|
/**/
|
||||||
57,
|
57,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user