Problem: Build error and compiler warnings.
Solution: Add missing change. Add type casts.
#endif
if (csinfo[i].ppath != NULL)
{
- len = STRLEN(cmd);
+ len = (int)STRLEN(cmd);
vim_snprintf(cmd + len, cmdlen - len, " -P%s", csinfo[i].ppath);
}
if (csinfo[i].flags != NULL)
{
- len = STRLEN(cmd);
+ len = (int)STRLEN(cmd);
vim_snprintf(cmd + len, cmdlen - len, " %s", csinfo[i].flags);
}
# ifdef UNIX
inde_copy = vim_strsave(curbuf->b_p_inde);
if (inde_copy != NULL)
{
- indent = (int)eval_to_number(inde_copy);
+ indent = (int)eval_to_number(inde_copy, TRUE);
vim_free(inde_copy);
}
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 635,
/**/
634,
/**/