Problem: Win32: Warnings for type conversion.
Solution: Add type casts. (Mike Williams)
n = gap->ga_growsize;
new_len = gap->ga_itemsize * (gap->ga_len + n);
pp = (gap->ga_data == NULL)
- ? alloc(new_len) : vim_realloc(gap->ga_data, new_len);
+ ? alloc((unsigned)new_len) : vim_realloc(gap->ga_data, new_len);
if (pp == NULL)
return FAIL;
old_len = gap->ga_itemsize * gap->ga_maxlen;
static void
unescape_shellxquote(char_u *p, char_u *escaped)
{
- int l = STRLEN(p);
+ int l = (int)STRLEN(p);
int n;
while (*p != NUL)
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 459,
/**/
458,
/**/