Problem: Compiler warnings on 64 bit windows.
Solution: Add type casts. (Mike Williams)
/* Find start of last argument (argument just before cursor): */
p = buff;
xp->xp_pattern = p;
- len = STRLEN(buff);
+ len = (int)STRLEN(buff);
while (*p && p < buff + len)
{
if (*p == ' ' || *p == TAB)
{
/* searching backwards, so set pos to last line and col */
pos.lnum = curwin->w_buffer->b_ml.ml_line_count;
- pos.col = STRLEN(ml_get(curwin->w_buffer->b_ml.ml_line_count));
+ pos.col = (colnr_T)STRLEN(
+ ml_get(curwin->w_buffer->b_ml.ml_line_count));
}
}
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 621,
/**/
620,
/**/