diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-03-03 12:22:53 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-03-03 12:22:53 +0100 |
commit | f1d2501ebe33e148886c2914acd33140e20ee222 (patch) | |
tree | 49e0f2df5cf7358f4bbd4f5ec25a2359753ca671 /src/diff.c | |
parent | 00ded43a5a85df57abb74f9e3a38a401f6fbd8fd (diff) | |
download | vim-git-f1d2501ebe33e148886c2914acd33140e20ee222.tar.gz |
patch 7.4.1476v7.4.1476
Problem: Function arguments marked as unused while they are not.
Solution: Remove UNUSED. (Yegappan Lakshmanan)
Diffstat (limited to 'src/diff.c')
-rw-r--r-- | src/diff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/diff.c b/src/diff.c index be7e38ccb..92e1a054e 100644 --- a/src/diff.c +++ b/src/diff.c @@ -641,7 +641,7 @@ diff_write(buf_T *buf, char_u *fname) */ void ex_diffupdate( - exarg_T *eap UNUSED) /* can be NULL */ + exarg_T *eap) /* can be NULL */ { buf_T *buf; int idx_orig; |