Problem: Compiler warning on MS-Windows.
Solution: Add type casts. (Ken Takata)
char_u *to_free = NULL;
int maxlen;
- acp_to_enc(printer_name, STRLEN(printer_name), &to_free, &maxlen);
+ acp_to_enc(printer_name, (int)STRLEN(printer_name), &to_free,
+ &maxlen);
if (to_free != NULL)
printer_name = to_free;
- acp_to_enc(port_name, STRLEN(port_name), &to_free, &maxlen);
+ acp_to_enc(port_name, (int)STRLEN(port_name), &to_free, &maxlen);
if (to_free != NULL)
port_name = to_free;
}
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 481,
/**/
480,
/**/