File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -8549,7 +8549,7 @@ test_gui_w32_sendevent(dict_T *args)
85498549 char_u * event ;
85508550 INPUT inputs [1 ];
85518551
8552- event = dict_get_string (args , "event" , TRUE);
8552+ event = dict_get_string (args , ( char_u * ) "event" , TRUE);
85538553 if (event == NULL )
85548554 return FALSE;
85558555
@@ -8559,7 +8559,7 @@ test_gui_w32_sendevent(dict_T *args)
85598559 {
85608560 WORD vkCode ;
85618561
8562- vkCode = dict_get_number_def (args , "keycode" , 0 );
8562+ vkCode = dict_get_number_def (args , ( char_u * ) "keycode" , 0 );
85638563 if (vkCode <= 0 || vkCode >= 0xFF )
85648564 {
85658565 semsg (_ (e_invalid_argument_nr ), (long )vkCode );
Original file line number Diff line number Diff line change @@ -735,6 +735,8 @@ static char *(features[]) =
735735
736736static int included_patches [] =
737737{ /* Add new patch number below this line */
738+ /**/
739+ 62 ,
738740/**/
739741 61 ,
740742/**/
You can’t perform that action at this time.
0 commit comments