patch 9.0.0129: compiler warning for int/size_t usage
Problem: Compiler warning for int/size_t usage.
Solution: Add a type cast. (Mike Williams, closes #10830)
diff --git a/src/quickfix.c b/src/quickfix.c
index b9b908c..e9cbcb3 100644
--- a/src/quickfix.c
+++ b/src/quickfix.c
@@ -3641,7 +3641,7 @@
// with ^^^^.
qf_fmt_text((fname != NULL || qfp->qf_lnum != 0)
? skipwhite(qfp->qf_text) : qfp->qf_text,
- tbuf, tbuflen);
+ tbuf, (int)tbuflen);
msg_prt_line(tbuf, FALSE);
if (tbuf != IObuff)
diff --git a/src/version.c b/src/version.c
index f079d3c..f4c63f1 100644
--- a/src/version.c
+++ b/src/version.c
@@ -736,6 +736,8 @@
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 129,
+/**/
128,
/**/
127,