From ab146dac6b4148e770eb2bf61c72ef62d3ecfc65 Mon Sep 17 00:00:00 2001 From: Mike Williams Date: Mon, 1 Aug 2022 14:00:31 +0100 Subject: [PATCH] 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) --- src/quickfix.c | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/quickfix.c b/src/quickfix.c index b9b908cc06..e9cbcb395f 100644 --- a/src/quickfix.c +++ b/src/quickfix.c @@ -3641,7 +3641,7 @@ qf_list_entry(qfline_T *qfp, int qf_idx, int cursel) // 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 f079d3c7ec..f4c63f1f70 100644 --- a/src/version.c +++ b/src/version.c @@ -735,6 +735,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 129, /**/ 128, /**/