Problem: Compiler warnings for signed/unsigned char.
Solution: Add type casts. (John Marriott)
char_u *event;
INPUT inputs[1];
- event = dict_get_string(args, "event", TRUE);
+ event = dict_get_string(args, (char_u *)"event", TRUE);
if (event == NULL)
return FALSE;
{
WORD vkCode;
- vkCode = dict_get_number_def(args, "keycode", 0);
+ vkCode = dict_get_number_def(args, (char_u *)"keycode", 0);
if (vkCode <= 0 || vkCode >= 0xFF)
{
semsg(_(e_invalid_argument_nr), (long)vkCode);
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 62,
/**/
61,
/**/