Patch 7.4.2156
Problem: Compiler warning.
Solution: Add type cast. (Ken Takata, Mike Williams)
Files: src/os_win32.c
*** ../vim-7.4.2155/src/os_win32.c 2016-08-03 22:08:41.743652143 +0200
--- src/os_win32.c 2016-08-04 21:58:26.129284425 +0200
***************
*** 577,583 ****
const char *msgid_plural,
unsigned long n)
{
! return n == 1 ? msgid : msgid_plural;
}
/*ARGSUSED*/
--- 577,583 ----
const char *msgid_plural,
unsigned long n)
{
! return (char *)(n == 1 ? msgid : msgid_plural);
}
/*ARGSUSED*/
*** ../vim-7.4.2155/src/version.c 2016-08-04 21:21:09.405835089 +0200
--- src/version.c 2016-08-04 21:57:43.901674030 +0200
***************
*** 765,766 ****
--- 765,768 ----
{ /* Add new patch number below this line */
+ /**/
+ 2156,
/**/
--
"Lisp has all the visual appeal of oatmeal with nail clippings thrown in."
-- Larry Wall
/// Bram Moolenaar -- [email protected] -- 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 [email protected].
For more options, visit https://groups.google.com/d/optout.