Problem: 64 bit compiler warnings.
Solution: change type, add type cast. (Mike Williams)
static void *
vterm_malloc(size_t size, void *data UNUSED)
{
- return alloc_clear(size);
+ return alloc_clear((unsigned) size);
}
static void
int fname_size;
char_u *p = fname;
int i;
- int off;
+ size_t off;
- textline = alloc(width + STRLEN(fname) + 1);
+ textline = alloc(width + (int)STRLEN(fname) + 1);
if (textline == NULL)
return NULL;
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 1687,
/**/
1686,
/**/