Patch 7.4.1927
Problem: Compiler warning for signed/unsigned.
Solution: Add type cast.
Files: src/if_mzsch.c
*** ../vim-7.4.1926/src/if_mzsch.c 2016-06-04 20:25:01.185991001 +0200
--- src/if_mzsch.c 2016-06-13 19:51:08.358186581 +0200
***************
*** 1174,1183 ****
MZ_GC_VAR_IN_REG(0, config_path);
MZ_GC_REG();
/* workaround for dynamic loading on windows */
! s = vim_getenv("PLTCONFIGDIR", &mustfree);
if (s != NULL)
{
! config_path = scheme_make_path(s);
MZ_GC_CHECK();
if (mustfree)
vim_free(s);
--- 1174,1183 ----
MZ_GC_VAR_IN_REG(0, config_path);
MZ_GC_REG();
/* workaround for dynamic loading on windows */
! s = vim_getenv((char_u *)"PLTCONFIGDIR", &mustfree);
if (s != NULL)
{
! config_path = scheme_make_path((char *)s);
MZ_GC_CHECK();
if (mustfree)
vim_free(s);
*** ../vim-7.4.1926/src/version.c 2016-06-12 23:03:15.335561988 +0200
--- src/version.c 2016-06-13 19:50:10.694797828 +0200
***************
*** 755,756 ****
--- 755,758 ----
{ /* Add new patch number below this line */
+ /**/
+ 1927,
/**/
--
>From "know your smileys":
:-{} Too much lipstick
/// 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.