File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4199,7 +4199,7 @@ set_child_environment(
41994199# ifdef FEAT_TERMINAL
42004200 if (is_terminal )
42014201 {
4202- sprintf ((char * )envbuf , "%ld" , get_vim_var_nr (VV_VERSION ));
4202+ sprintf ((char * )envbuf , "%ld" , ( long ) get_vim_var_nr (VV_VERSION ));
42034203 setenv ("VIM_TERMINAL" , (char * )envbuf , 1 );
42044204 }
42054205# endif
@@ -4227,7 +4227,7 @@ set_child_environment(
42274227 if (is_terminal )
42284228 {
42294229 vim_snprintf (envbuf_Version , sizeof (envbuf_Version ),
4230- "VIM_TERMINAL=%ld" , get_vim_var_nr (VV_VERSION ));
4230+ "VIM_TERMINAL=%ld" , ( long ) get_vim_var_nr (VV_VERSION ));
42314231 putenv (envbuf_Version );
42324232 }
42334233# endif
Original file line number Diff line number Diff line change @@ -761,6 +761,8 @@ static char *(features[]) =
761761
762762static int included_patches [] =
763763{ /* Add new patch number below this line */
764+ /**/
765+ 54 ,
764766/**/
765767 53 ,
766768/**/
You can’t perform that action at this time.
0 commit comments