patch 7.4.1823
Problem:    Warning from 64 bit compiler.
Solution:   Add type cast. (Mike Williams)
diff --git a/src/quickfix.c b/src/quickfix.c
index db4c0fa..7b6d1bc 100644
--- a/src/quickfix.c
+++ b/src/quickfix.c
@@ -675,7 +675,7 @@
 		    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
diff --git a/src/version.c b/src/version.c
index 36eba98..f494c22 100644
--- a/src/version.c
+++ b/src/version.c
@@ -754,6 +754,8 @@
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    1823,
+/**/
     1822,
 /**/
     1821,