0
0
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:
Bram Moolenaar
2020-04-30 20:21:43 +02:00
parent 2c5c1638a9
commit 7f6f56f43c
2 changed files with 3 additions and 1 deletions

View File

@@ -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,
/**/ /**/

View File

@@ -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;