mirror of
https://github.com/vim/vim.git
synced 2025-09-09 22:23:37 -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:
parent
13d3b05ed2
commit
850d427f07
@ -5496,12 +5496,12 @@ job_start(typval_T *argvars, char **argv_arg, jobopt_T *opt_arg)
|
|||||||
int argc = 0;
|
int argc = 0;
|
||||||
#if defined(UNIX)
|
#if defined(UNIX)
|
||||||
# define USE_ARGV
|
# define USE_ARGV
|
||||||
|
int i;
|
||||||
#else
|
#else
|
||||||
garray_T ga;
|
garray_T ga;
|
||||||
#endif
|
#endif
|
||||||
jobopt_T opt;
|
jobopt_T opt;
|
||||||
ch_part_T part;
|
ch_part_T part;
|
||||||
int i;
|
|
||||||
|
|
||||||
job = job_alloc();
|
job = job_alloc();
|
||||||
if (job == NULL)
|
if (job == NULL)
|
||||||
|
@ -761,6 +761,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 */
|
||||||
|
/**/
|
||||||
|
1775,
|
||||||
/**/
|
/**/
|
||||||
1774,
|
1774,
|
||||||
/**/
|
/**/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user