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:
@@ -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
|
||||
|
@@ -753,6 +753,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
1823,
|
||||
/**/
|
||||
1822,
|
||||
/**/
|
||||
|
Reference in New Issue
Block a user