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 -- [email protected] -- http://www.Moolenaar.net \\\
/// \\\
\\\ sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ ///
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/vim_dev/20220801130239.587AE1C0AF4%40moolenaar.net.