1
0
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:
Bram Moolenaar
2012-06-07 21:09:39 +02:00
parent 802053f14a
commit 27ba088549
2 changed files with 3 additions and 1 deletions

View File

@@ -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