We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91c4937 commit d9db8b4Copy full SHA for d9db8b4
2 files changed
src/quickfix.c
@@ -675,7 +675,7 @@ qf_init_ext(
675
if (fgets((char *)growbuf + growbuflen,
676
growbufsiz - growbuflen, fd) == NULL)
677
break;
678
- linelen = STRLEN(growbuf + growbuflen);
+ linelen = (int)STRLEN(growbuf + growbuflen);
679
growbuflen += linelen;
680
if (growbuf[growbuflen - 1] == '\n'
681
#ifdef USE_CRNL
src/version.c
@@ -753,6 +753,8 @@ static char *(features[]) =
753
754
static int included_patches[] =
755
{ /* Add new patch number below this line */
756
+/**/
757
+ 1823,
758
/**/
759
1822,
760
0 commit comments