Re: Patch 8.2.0119

2020-01-14 Fir de Conversatie Elimar Riesebieter
* Bram Moolenaar  [2020-01-14 22:03 +0100]:

> 
> Patch 8.2.0119
> Problem:Message test fails on some platforms. (Elimar Riesebieter)
> Solution:   Add type cast to vim_snprintf() argument. (Dominique Pelle)
> Files:src/message_test.c

Thanks for the fix. Kudos to Dominique ;-)

Elimar
-- 
  Experience is something you don't get until
  just after you need it!

-- 
-- 
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 vim_dev+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/vim_dev/20200115000350.yibdizi4vz2rxzh3%40toy.home.lxtec.de.


Patch 8.2.0119

2020-01-14 Fir de Conversatie Bram Moolenaar


Patch 8.2.0119
Problem:Message test fails on some platforms. (Elimar Riesebieter)
Solution:   Add type cast to vim_snprintf() argument. (Dominique Pelle)
Files:  src/message_test.c


*** ../vim-8.2.0118/src/message_test.c  2019-12-31 19:24:47.989647273 +0100
--- src/message_test.c  2020-01-14 21:57:51.203963548 +0100
***
*** 166,172 
assert(bsize == 0 || STRNCMP(buf, "deadbeef", bsize_int) == 0);
assert(bsize == 0 || buf[MIN(n, bsize_int)] == '\0');
  
!   n = vim_snprintf(buf, bsize, fmt_06b, 12);
assert(n == 6);
assert(bsize == 0 || STRNCMP(buf, "001100", bsize_int) == 0);
assert(bsize == 0 || buf[MIN(n, bsize_int)] == '\0');
--- 166,172 
assert(bsize == 0 || STRNCMP(buf, "deadbeef", bsize_int) == 0);
assert(bsize == 0 || buf[MIN(n, bsize_int)] == '\0');
  
!   n = vim_snprintf(buf, bsize, fmt_06b, (uvarnumber_T)12);
assert(n == 6);
assert(bsize == 0 || STRNCMP(buf, "001100", bsize_int) == 0);
assert(bsize == 0 || buf[MIN(n, bsize_int)] == '\0');
*** ../vim-8.2.0118/src/version.c   2020-01-14 20:42:31.724887459 +0100
--- src/version.c   2020-01-14 21:57:07.484160704 +0100
***
*** 744,745 
--- 744,747 
  {   /* Add new patch number below this line */
+ /**/
+ 119,
  /**/

-- 
Did Adam and Eve have navels?

 /// Bram Moolenaar -- b...@moolenaar.net -- http://www.Moolenaar.net   \\\
///sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\  an exciting new programming language -- http://www.Zimbu.org///
 \\\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 vim_dev+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/vim_dev/202001142103.00EL3WvV013587%40masaka.moolenaar.net.