summaryrefslogtreecommitdiffstats
path: root/src/fileio.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2013-11-12 18:09:29 +0100
committerBram Moolenaar <Bram@vim.org>2013-11-12 18:09:29 +0100
commite874744e94e172d33edd91ccb0f5cdf5105b6be3 (patch)
tree36b8e8ff0bfebdb52e1db30fe1665772f5d6fb9a /src/fileio.c
parent8f5610df7312023e2da5dc8f885e1b159a57dee2 (diff)
updated for version 7.4.091v7.4.091
Problem: Missing semicolon. Solution: Add the semicolon.
Diffstat (limited to 'src/fileio.c')
-rw-r--r--src/fileio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fileio.c b/src/fileio.c
index 9db984d3fa..1d030165a0 100644
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -6708,7 +6708,7 @@ vim_rename(from, to)
mch_free_acl(acl);
#endif
#ifdef HAVE_SELINUX
- mch_copy_sec(from, to)
+ mch_copy_sec(from, to);
#endif
if (errmsg != NULL)
{