File tree 2 files changed +5
-3
lines changed
2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -3400,7 +3400,7 @@ static VTermParserCallbacks parser_fallbacks = {
3400
3400
static void *
3401
3401
vterm_malloc (size_t size , void * data UNUSED )
3402
3402
{
3403
- return alloc_clear (size );
3403
+ return alloc_clear (( unsigned ) size );
3404
3404
}
3405
3405
3406
3406
static void
@@ -4016,9 +4016,9 @@ get_separator(int text_width, char_u *fname)
4016
4016
int fname_size ;
4017
4017
char_u * p = fname ;
4018
4018
int i ;
4019
- int off ;
4019
+ size_t off ;
4020
4020
4021
- textline = alloc (width + STRLEN (fname ) + 1 );
4021
+ textline = alloc (width + ( int ) STRLEN (fname ) + 1 );
4022
4022
if (textline == NULL )
4023
4023
return NULL ;
4024
4024
Original file line number Diff line number Diff line change @@ -762,6 +762,8 @@ static char *(features[]) =
762
762
763
763
static int included_patches [] =
764
764
{ /* Add new patch number below this line */
765
+ /**/
766
+ 1687 ,
765
767
/**/
766
768
1686 ,
767
769
/**/
You can’t perform that action at this time.
0 commit comments