Skip to content

Commit 1f131ae

Browse files
committed
patch 8.1.0012: misplaced #endif
Problem: Misplaced #endif. Solution: Move the #endif to after the expression. (David Binderman)
1 parent f88a5bc commit 1f131ae

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

src/fileio.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -714,8 +714,8 @@ readfile(
714714
&& st.st_gid != swap_st.st_gid
715715
# ifdef HAVE_FCHOWN
716716
&& fchown(curbuf->b_ml.ml_mfp->mf_fd, -1, st.st_gid)
717-
# endif
718717
== -1
718+
# endif
719719
)
720720
swap_mode &= 0600;
721721
}

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+
12,
764766
/**/
765767
11,
766768
/**/

0 commit comments

Comments
 (0)