0
0
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:
Bram Moolenaar
2016-06-01 20:31:43 +02:00
parent 18dfb4404a
commit 9b0ac229bc
4 changed files with 11 additions and 8 deletions

View File

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