1
0
forked from aniani/vim

patch 7.4.839

Problem:    Compiler warning on 64-bit system.
Solution:   Add cast to int. (Mike Williams)
This commit is contained in:
Bram Moolenaar
2015-08-26 23:01:21 +02:00
parent 8060687905
commit 6ed535dbc0
2 changed files with 3 additions and 1 deletions

View File

@@ -1801,7 +1801,7 @@ find_rawstring_end(linep, startpos, endpos)
for (p = linep + startpos->col + 1; *p && *p != '('; ++p) for (p = linep + startpos->col + 1; *p && *p != '('; ++p)
; ;
delim_len = (p - linep) - startpos->col - 1; delim_len = (p - linep) - startpos->col - 1;
delim_copy = vim_strnsave(linep + startpos->col + 1, delim_len); delim_copy = vim_strnsave(linep + startpos->col + 1, (int)delim_len);
if (delim_copy == NULL) if (delim_copy == NULL)
return FALSE; return FALSE;
for (lnum = startpos->lnum; lnum <= endpos->lnum; ++lnum) for (lnum = startpos->lnum; lnum <= endpos->lnum; ++lnum)

View File

@@ -741,6 +741,8 @@ static char *(features[]) =
static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
839,
/**/ /**/
838, 838,
/**/ /**/