1
0
forked from aniani/vim

updated for version 7.3.855

Problem:    Compiler warnings.
Solution:   Add type casts. (Mike Williams)
This commit is contained in:
Bram Moolenaar
2013-03-13 17:01:52 +01:00
parent 3978e08fbe
commit b3cb982162
2 changed files with 4 additions and 2 deletions

View File

@@ -5468,7 +5468,7 @@ cin_isinit(void)
for (i = 0; i < (int)(sizeof(skip) / sizeof(char *)); ++i)
{
l = strlen(skip[i]);
l = (int)strlen(skip[i]);
if (cin_starts_with(s, skip[i]))
{
s = cin_skipcomment(s + l);
@@ -6430,7 +6430,7 @@ cin_starts_with(s, word)
char_u *s;
char *word;
{
int l = STRLEN(word);
int l = (int)STRLEN(word);
return (STRNCMP(s, word, l) == 0 && !vim_isIDc(s[l]));
}

View File

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