0
0
mirror of https://github.com/vim/vim.git synced 2025-07-24 10:45:12 -04:00

updated for version 7.4.087

Problem:    Compiler warning on 64 bit Windows systems.
Solution:   Fix type cast. (Mike Williams)
This commit is contained in:
Bram Moolenaar 2013-11-11 23:17:39 +01:00
parent 0f8de8dfb2
commit efe06f4dd8
2 changed files with 4 additions and 1 deletions

View File

@ -2193,7 +2193,8 @@ op_replace(oap, c)
else
{
/* Replacing with \r or \n means splitting the line. */
after_p = alloc_check((unsigned)oldlen + 1 + n - STRLEN(newp));
after_p = alloc_check(
(unsigned)(oldlen + 1 + n - STRLEN(newp)));
if (after_p != NULL)
STRMOVE(after_p, oldp);
}

View File

@ -738,6 +738,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
87,
/**/
86,
/**/