forked from aniani/vim
updated for version 7.4.271
Problem: Compiler warning on 64 bit windows. Solution: Add type cast. (Mike Williams)
This commit is contained in:
@@ -6559,7 +6559,7 @@ str_to_reg(y_ptr, yank_type, str, len, blocklen, str_list)
|
||||
{
|
||||
for (ss = (char_u **) str; *ss != NULL; ++ss, ++lnum)
|
||||
{
|
||||
i = STRLEN(*ss);
|
||||
i = (long)STRLEN(*ss);
|
||||
pp[lnum] = vim_strnsave(*ss, i);
|
||||
if (i > maxlen)
|
||||
maxlen = i;
|
||||
|
@@ -734,6 +734,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
271,
|
||||
/**/
|
||||
270,
|
||||
/**/
|
||||
|
Reference in New Issue
Block a user