Problem: Compiler warnings for int to size_t conversion. (Randall W.
Morris)
Solution: Add type casts.
escaped = vim_strsave_escape_csi(tb + j);
if (escaped != NULL)
{
- newlen = STRLEN(escaped);
+ newlen = (int)STRLEN(escaped);
mch_memmove(tb + j, escaped, newlen);
j += newlen;
vim_free(escaped);
int found_match = FALSE;
long lnum;
colnr_T col;
- int pat_len = STRLEN(spat);
+ int pat_len = (int)STRLEN(spat);
for (lnum = 1; lnum <= buf->b_ml.ml_line_count && *tomatch > 0; ++lnum)
{
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 2826,
/**/
2825,
/**/