Problem: Compiler warnings.
Solution: Add type casts. (Mike Williams)
mch_errmsg(char *str)
{
#if defined(WIN3264) && !defined(FEAT_GUI_MSWIN)
- int len = STRLEN(str);
+ int len = (int)STRLEN(str);
DWORD nwrite = 0;
DWORD mode = 0;
HANDLE h = GetStdHandle(STD_ERROR_HANDLE);
mch_msg(char *str)
{
#if defined(WIN3264) && !defined(FEAT_GUI_MSWIN)
- int len = STRLEN(str);
+ int len = (int)STRLEN(str);
DWORD nwrite = 0;
DWORD mode;
HANDLE h = GetStdHandle(STD_OUTPUT_HANDLE);
emsg(_(e_maxmempat));
return NULL;
}
- newl = (nfa_thread_T *)alloc(newsize);
+ newl = (nfa_thread_T *)alloc((int)newsize);
if (newl == NULL)
return NULL;
l->len = newlen;
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 919,
/**/
918,
/**/