To: vim_dev@googlegroups.com Subject: Patch 9.0.0129 Fcc: outbox From: Bram Moolenaar Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ------------ Patch 9.0.0129 Problem: Compiler warning for int/size_t usage. Solution: Add a type cast. (Mike Williams, closes #10830) Files: src/quickfix.c *** ../vim-9.0.0128/src/quickfix.c 2022-07-28 11:55:58.331052848 +0100 --- src/quickfix.c 2022-08-01 13:59:03.377812189 +0100 *************** *** 3641,3647 **** // with ^^^^. qf_fmt_text((fname != NULL || qfp->qf_lnum != 0) ? skipwhite(qfp->qf_text) : qfp->qf_text, ! tbuf, tbuflen); msg_prt_line(tbuf, FALSE); if (tbuf != IObuff) --- 3641,3647 ---- // with ^^^^. qf_fmt_text((fname != NULL || qfp->qf_lnum != 0) ? skipwhite(qfp->qf_text) : qfp->qf_text, ! tbuf, (int)tbuflen); msg_prt_line(tbuf, FALSE); if (tbuf != IObuff) *** ../vim-9.0.0128/src/version.c 2022-08-01 12:06:37.302107057 +0100 --- src/version.c 2022-08-01 14:00:15.313559366 +0100 *************** *** 737,738 **** --- 737,740 ---- { /* Add new patch number below this line */ + /**/ + 129, /**/ -- How do I set the laser printer to stun? /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\ /// \\\ \\\ sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ /// \\\ help me help AIDS victims -- http://ICCF-Holland.org ///