Skip to content

Commit b263626

Browse files
committed
updated for version 7.4.091
Problem: Missing semicolon. Solution: Add the semicolon.
1 parent e2c2f90 commit b263626

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/fileio.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6708,7 +6708,7 @@ vim_rename(from, to)
67086708
mch_free_acl(acl);
67096709
#endif
67106710
#ifdef HAVE_SELINUX
6711-
mch_copy_sec(from, to)
6711+
mch_copy_sec(from, to);
67126712
#endif
67136713
if (errmsg != NULL)
67146714
{

src/version.c

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

739739
static int included_patches[] =
740740
{ /* Add new patch number below this line */
741+
/**/
742+
91,
741743
/**/
742744
90,
743745
/**/

0 commit comments

Comments
 (0)