forked from aniani/vim
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,
|
if (fgets((char *)growbuf + growbuflen,
|
||||||
growbufsiz - growbuflen, fd) == NULL)
|
growbufsiz - growbuflen, fd) == NULL)
|
||||||
break;
|
break;
|
||||||
linelen = STRLEN(growbuf + growbuflen);
|
linelen = (int)STRLEN(growbuf + growbuflen);
|
||||||
growbuflen += linelen;
|
growbuflen += linelen;
|
||||||
if (growbuf[growbuflen - 1] == '\n'
|
if (growbuf[growbuflen - 1] == '\n'
|
||||||
#ifdef USE_CRNL
|
#ifdef USE_CRNL
|
||||||
|
@@ -753,6 +753,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
1823,
|
||||||
/**/
|
/**/
|
||||||
1822,
|
1822,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user