Patch 8.2.3672 (after 8.2.3670)
Problem: Build failure with unsigned char.
Solution: Use int instead of char.
Files: src/xxd/xxd.c
*** ../vim-8.2.3671/src/xxd/xxd.c 2021-11-25 11:16:43.141318500 +0000
--- src/xxd/xxd.c 2021-11-25 13:24:29.597569997 +0000
***************
*** 253,266 ****
}
static void
! exit_on_ferror(char c, FILE *fpi)
{
if (c == EOF && ferror(fpi))
perror_exit(2);
}
static void
! putc_or_die(char c, FILE *fpo)
{
if (putc(c, fpo) == EOF)
perror_exit(3);
--- 253,266 ----
}
static void
! exit_on_ferror(int c, FILE *fpi)
{
if (c == EOF && ferror(fpi))
perror_exit(2);
}
static void
! putc_or_die(int c, FILE *fpo)
{
if (putc(c, fpo) == EOF)
perror_exit(3);
*** ../vim-8.2.3671/src/version.c 2021-11-25 13:04:44.618340595 +0000
--- src/version.c 2021-11-25 13:25:45.853917893 +0000
***************
*** 759,760 ****
--- 759,762 ----
{ /* Add new patch number below this line */
+ /**/
+ 3672,
/**/
--
It is illegal to take more than three sips of beer at a time while standing.
[real standing law in Texas, United States of America]
/// 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/20211125132701.5E9E41C0A05%40moolenaar.net.