Skip to content

Commit 71b0f7b

Browse files
committed
patch 7.4.1321
Problem: Compiler complains about missing statement. Solution: Add an empty statement. (Andrei Olsen)
1 parent 44d5718 commit 71b0f7b

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

src/os_win32.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5102,6 +5102,8 @@ mch_start_job(char *cmd, job_T *job)
51025102
failed:
51035103
# ifdef FEAT_CHANNEL
51045104
channel_free(channel);
5105+
# else
5106+
; /* make compiler happy */
51055107
# endif
51065108
}
51075109

src/version.c

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

748748
static int included_patches[] =
749749
{ /* Add new patch number below this line */
750+
/**/
751+
1321,
750752
/**/
751753
1320,
752754
/**/

0 commit comments

Comments
 (0)