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,
|
||||
growbufsiz - growbuflen, fd) == NULL)
|
||||
break;
|
||||
linelen = STRLEN(growbuf + growbuflen);
|
||||
linelen = (int)STRLEN(growbuf + growbuflen);
|
||||
growbuflen += linelen;
|
||||
if (growbuf[growbuflen - 1] == '\n'
|
||||
#ifdef USE_CRNL
|
||||
|
Reference in New Issue
Block a user