# HG changeset patch # User Bram Moolenaar # Date 1659359703 -7200 # Node ID 04bc48a4ca6fbdae885fc3929afeb511a2307f68 # Parent 3330ed159d90667cf01f672669bf1b90876071d0 patch 9.0.0129: compiler warning for int/size_t usage Commit: https://github.com/vim/vim/commit/ab146dac6b4148e770eb2bf61c72ef62d3ecfc65 Author: Mike Williams Date: Mon Aug 1 14:00:31 2022 +0100 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 https://github.com/vim/vim/issues/10830) diff --git a/src/quickfix.c b/src/quickfix.c --- a/src/quickfix.c +++ b/src/quickfix.c @@ -3641,7 +3641,7 @@ qf_list_entry(qfline_T *qfp, int qf_idx, // 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 --- a/src/version.c +++ b/src/version.c @@ -736,6 +736,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 129, +/**/ 128, /**/ 127,