From: Bram Moolenaar Date: Mon, 15 Feb 2016 11:44:20 +0000 (+0100) Subject: patch 7.4.1321 X-Git-Tag: v7.4.1321 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=71b0f7b5c083d32fd37fa825f5d829b6a6c1a09a;p=vim patch 7.4.1321 Problem: Compiler complains about missing statement. Solution: Add an empty statement. (Andrei Olsen) --- diff --git a/src/os_win32.c b/src/os_win32.c index cac82230d..3403ed643 100644 --- a/src/os_win32.c +++ b/src/os_win32.c @@ -5102,6 +5102,8 @@ mch_start_job(char *cmd, job_T *job) failed: # ifdef FEAT_CHANNEL channel_free(channel); +# else + ; /* make compiler happy */ # endif } diff --git a/src/version.c b/src/version.c index a380ed341..f8d838b44 100644 --- a/src/version.c +++ b/src/version.c @@ -747,6 +747,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1321, /**/ 1320, /**/