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:
parent
0f8de8dfb2
commit
efe06f4dd8
@ -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);
|
||||
}
|
||||
|
@ -738,6 +738,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
87,
|
||||
/**/
|
||||
86,
|
||||
/**/
|
||||
|
Loading…
x
Reference in New Issue
Block a user