forked from aniani/vim
updated for version 7.3.548
Problem: Compiler warning on 64 bit Windows. Solution: Add type cast. (Mike Williams)
This commit is contained in:
@@ -4352,7 +4352,7 @@ do_join(count, insert_space, save_undo, use_formatoptions)
|
||||
|
||||
char_u *new_curr = skip_comment(curr, TRUE, insert_space,
|
||||
&prev_was_comment);
|
||||
comments[t] = new_curr - curr;
|
||||
comments[t] = (int)(new_curr - curr);
|
||||
curr = new_curr;
|
||||
}
|
||||
else
|
||||
|
@@ -714,6 +714,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
548,
|
||||
/**/
|
||||
547,
|
||||
/**/
|
||||
|
Reference in New Issue
Block a user