diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-03-28 22:17:16 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-03-28 22:17:16 +0200 |
commit | 8b29aba0192cc56294ef49bb3c01adff4b8f3a28 (patch) | |
tree | fd9ee2e03e61c154b1f488ca57de9028c4de0cfa | |
parent | 0b9e4d1224522791c0dbbd45742cbd688be823f3 (diff) | |
download | vim-8b29aba0192cc56294ef49bb3c01adff4b8f3a28.zip |
patch 7.4.1678
Problem: Warning for unused argument.
Solution: Add UNUSED. (Dominique Pelle)
-rw-r--r-- | src/if_mzsch.c | 2 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/if_mzsch.c b/src/if_mzsch.c index a0c6483c1..d255d4adf 100644 --- a/src/if_mzsch.c +++ b/src/if_mzsch.c @@ -1073,7 +1073,7 @@ load_base_module(void *data) } static Scheme_Object * -load_base_module_on_error(void *data) +load_base_module_on_error(void *data UNUSED) { load_base_module_failed = TRUE; return scheme_null; diff --git a/src/version.c b/src/version.c index 878eb2494..ec283a19e 100644 --- a/src/version.c +++ b/src/version.c @@ -749,6 +749,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1678, +/**/ 1677, /**/ 1676, |