mirror of
https://github.com/vim/vim.git
synced 2025-09-25 03:54:15 -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[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
668,
|
||||||
/**/
|
/**/
|
||||||
667,
|
667,
|
||||||
/**/
|
/**/
|
||||||
|
@@ -653,7 +653,7 @@ call_def_function(
|
|||||||
case ISN_EXECCONCAT:
|
case ISN_EXECCONCAT:
|
||||||
{
|
{
|
||||||
int count = iptr->isn_arg.number;
|
int count = iptr->isn_arg.number;
|
||||||
int len = 0;
|
size_t len = 0;
|
||||||
int pass;
|
int pass;
|
||||||
int i;
|
int i;
|
||||||
char_u *cmd = NULL;
|
char_u *cmd = NULL;
|
||||||
|
Reference in New Issue
Block a user