From 1f131aee0ed4383009c0a67cc15581cc4c0dcad7 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Mon, 21 May 2018 13:39:40 +0200 Subject: [PATCH] patch 8.1.0012: misplaced #endif Problem: Misplaced #endif. Solution: Move the #endif to after the expression. (David Binderman) --- src/fileio.c | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/fileio.c b/src/fileio.c index 98631e074..d34605ca7 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -714,8 +714,8 @@ readfile( && st.st_gid != swap_st.st_gid # ifdef HAVE_FCHOWN && fchown(curbuf->b_ml.ml_mfp->mf_fd, -1, st.st_gid) -# endif == -1 +# endif ) swap_mode &= 0600; } diff --git a/src/version.c b/src/version.c index 3ebeb772d..6dfc3aaef 100644 --- a/src/version.c +++ b/src/version.c @@ -761,6 +761,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 12, /**/ 11, /**/ -- 2.50.1