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 @@ -4199,7 +4199,7 @@ set_child_environment(
4199
4199
# ifdef FEAT_TERMINAL
4200
4200
if (is_terminal )
4201
4201
{
4202
- sprintf ((char * )envbuf , "%ld" , get_vim_var_nr (VV_VERSION ));
4202
+ sprintf ((char * )envbuf , "%ld" , ( long ) get_vim_var_nr (VV_VERSION ));
4203
4203
setenv ("VIM_TERMINAL" , (char * )envbuf , 1 );
4204
4204
}
4205
4205
# endif
@@ -4227,7 +4227,7 @@ set_child_environment(
4227
4227
if (is_terminal )
4228
4228
{
4229
4229
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 ));
4231
4231
putenv (envbuf_Version );
4232
4232
}
4233
4233
# endif
Original file line number Diff line number Diff line change @@ -761,6 +761,8 @@ static char *(features[]) =
761
761
762
762
static int included_patches [] =
763
763
{ /* Add new patch number below this line */
764
+ /**/
765
+ 54 ,
764
766
/**/
765
767
53 ,
766
768
/**/
You can’t perform that action at this time.
0 commit comments