Problem: MS-Windows: Compile warning for converting from size_t to int
breaks the Appveyor CI (after v9.2.0168)
Solution: Explicitly cast to int in convert_string() (ichizok).
closes: #19722
Signed-off-by: ichizok <gclient.gaap@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
}
else
{
- int len = str->length;
+ int len = (int)str->length;
ret->string = string_convert(&vimconv, str->string, &len);
ret->length = len;
}
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 179,
/**/
178,
/**/