mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
patch 7.4.1863
Problem: Compiler warnings on Win64. Solution: Adjust types, add type casts. (Ken Takata)
This commit is contained in:
@@ -753,6 +753,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
1863,
|
||||
/**/
|
||||
1862,
|
||||
/**/
|
||||
@@ -5077,7 +5079,7 @@ do_intro_line(
|
||||
if (*mesg == ' ')
|
||||
{
|
||||
vim_strncpy(modby, (char_u *)_("Modified by "), MODBY_LEN - 1);
|
||||
l = STRLEN(modby);
|
||||
l = (int)STRLEN(modby);
|
||||
vim_strncpy(modby + l, (char_u *)MODIFIED_BY, MODBY_LEN - l - 1);
|
||||
mesg = modby;
|
||||
}
|
||||
|
Reference in New Issue
Block a user