From: Mike Williams Date: Mon, 1 Aug 2022 13:00:31 +0000 (+0100) Subject: patch 9.0.0129: compiler warning for int/size_t usage X-Git-Tag: v9.0.0129 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ab146dac6b4148e770eb2bf61c72ef62d3ecfc65;p=thirdparty%2Fvim.git 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 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, /**/