diff options
author | Bram Moolenaar <Bram@vim.org> | 2014-04-23 12:52:40 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2014-04-23 12:52:40 +0200 |
commit | 62f167f716beb8bfeaadb8ec506a257827f701a2 (patch) | |
tree | 88cc0901549503ae2f8730f6337280763c2e2eec /src/os_unix.c | |
parent | c8836f702532b0bc3dd16972e6b504a7340e90e2 (diff) | |
download | vim-git-62f167f716beb8bfeaadb8ec506a257827f701a2.tar.gz |
updated for version 7.4.259v7.4.259
Problem: Warning for misplaced "const".
Solution: Move the "const". (Yukihiro Nakadaira)
Diffstat (limited to 'src/os_unix.c')
-rw-r--r-- | src/os_unix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os_unix.c b/src/os_unix.c index 32701fdc7..b735a13bb 100644 --- a/src/os_unix.c +++ b/src/os_unix.c @@ -2815,7 +2815,7 @@ mch_copy_sec(from_file, to_file) char_u *from_file; char_u *to_file; { - static const char const *smack_copied_attributes[] = + static const char * const smack_copied_attributes[] = { XATTR_NAME_SMACK, XATTR_NAME_SMACKEXEC, |