0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

patch 7.4.1823

Problem:    Warning from 64 bit compiler.
Solution:   Add type cast. (Mike Williams)
This commit is contained in:
Bram Moolenaar
2016-05-08 12:52:05 +02:00
parent 91c4937be1
commit d9db8b448c
2 changed files with 3 additions and 1 deletions

View File

@@ -675,7 +675,7 @@ qf_init_ext(
if (fgets((char *)growbuf + growbuflen,
growbufsiz - growbuflen, fd) == NULL)
break;
linelen = STRLEN(growbuf + growbuflen);
linelen = (int)STRLEN(growbuf + growbuflen);
growbuflen += linelen;
if (growbuf[growbuflen - 1] == '\n'
#ifdef USE_CRNL

View File

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