0
0
mirror of https://github.com/vim/vim.git synced 2025-09-06 21:53:38 -04:00

patch 8.0.1775: MS-Windows: warning for unused variable

Problem:    MS-Windows: warning for unused variable.
Solution:   Move declaration inside #ifdef. (Mike Williams)
This commit is contained in:
Bram Moolenaar 2018-04-30 10:38:40 +02:00
parent 13d3b05ed2
commit 850d427f07
2 changed files with 3 additions and 1 deletions

View File

@ -5496,12 +5496,12 @@ job_start(typval_T *argvars, char **argv_arg, jobopt_T *opt_arg)
int argc = 0;
#if defined(UNIX)
# define USE_ARGV
int i;
#else
garray_T ga;
#endif
jobopt_T opt;
ch_part_T part;
int i;
job = job_alloc();
if (job == NULL)

View File

@ -761,6 +761,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
1775,
/**/
1774,
/**/