Blame SOURCES/7.4.271

22c937
To: vim_dev@googlegroups.com
22c937
Subject: Patch 7.4.271
22c937
Fcc: outbox
22c937
From: Bram Moolenaar <Bram@moolenaar.net>
22c937
Mime-Version: 1.0
22c937
Content-Type: text/plain; charset=UTF-8
22c937
Content-Transfer-Encoding: 8bit
22c937
------------
22c937
22c937
Patch 7.4.271
22c937
Problem:    Compiler warning on 64 bit windows.
22c937
Solution:   Add type cast. (Mike Williams)
22c937
Files:	    src/ops.c
22c937
22c937
22c937
*** ../vim-7.4.270/src/ops.c	2014-04-29 12:15:22.860032651 +0200
22c937
--- src/ops.c	2014-04-29 15:54:23.055802359 +0200
22c937
***************
22c937
*** 6559,6565 ****
22c937
      {
22c937
  	for (ss = (char_u **) str; *ss != NULL; ++ss, ++lnum)
22c937
  	{
22c937
! 	    i = STRLEN(*ss);
22c937
  	    pp[lnum] = vim_strnsave(*ss, i);
22c937
  	    if (i > maxlen)
22c937
  		maxlen = i;
22c937
--- 6559,6565 ----
22c937
      {
22c937
  	for (ss = (char_u **) str; *ss != NULL; ++ss, ++lnum)
22c937
  	{
22c937
! 	    i = (long)STRLEN(*ss);
22c937
  	    pp[lnum] = vim_strnsave(*ss, i);
22c937
  	    if (i > maxlen)
22c937
  		maxlen = i;
22c937
*** ../vim-7.4.270/src/version.c	2014-04-29 15:11:39.783847283 +0200
22c937
--- src/version.c	2014-04-29 15:52:54.083803919 +0200
22c937
***************
22c937
*** 736,737 ****
22c937
--- 736,739 ----
22c937
  {   /* Add new patch number below this line */
22c937
+ /**/
22c937
+     271,
22c937
  /**/
22c937
22c937
-- 
22c937
From "know your smileys":
22c937
 :.-(	Crying
22c937
22c937
 /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net   \\\
22c937
///        sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
22c937
\\\  an exciting new programming language -- http://www.Zimbu.org        ///
22c937
 \\\            help me help AIDS victims -- http://ICCF-Holland.org    ///