mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
patch 8.2.0668: compiler warning for int/size_t usage
Problem: Compiler warning for int/size_t usage. Solution: Change "int" to "size_t". (Mike Williams)
This commit is contained in:
@@ -746,6 +746,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
668,
|
||||
/**/
|
||||
667,
|
||||
/**/
|
||||
|
@@ -653,7 +653,7 @@ call_def_function(
|
||||
case ISN_EXECCONCAT:
|
||||
{
|
||||
int count = iptr->isn_arg.number;
|
||||
int len = 0;
|
||||
size_t len = 0;
|
||||
int pass;
|
||||
int i;
|
||||
char_u *cmd = NULL;
|
||||
|
Reference in New Issue
Block a user