Skip to content

Commit 850d427

Browse files
committed
patch 8.0.1775: MS-Windows: warning for unused variable
Problem: MS-Windows: warning for unused variable. Solution: Move declaration inside #ifdef. (Mike Williams)
1 parent 13d3b05 commit 850d427

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/channel.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5496,12 +5496,12 @@ job_start(typval_T *argvars, char **argv_arg, jobopt_T *opt_arg)
54965496
int argc = 0;
54975497
#if defined(UNIX)
54985498
# define USE_ARGV
5499+
int i;
54995500
#else
55005501
garray_T ga;
55015502
#endif
55025503
jobopt_T opt;
55035504
ch_part_T part;
5504-
int i;
55055505

55065506
job = job_alloc();
55075507
if (job == NULL)

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -761,6 +761,8 @@ static char *(features[]) =
761761

762762
static int included_patches[] =
763763
{ /* Add new patch number below this line */
764+
/**/
765+
1775,
764766
/**/
765767
1774,
766768
/**/

0 commit comments

Comments
 (0)