Mercurial > vim
changeset 5828:17903ded5e9a v7.4.257
updated for version 7.4.257
Problem: Compiler warning, possibly for mismatch in parameter name.
Solution: Rename the parameter in the declaration.
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Sat, 12 Apr 2014 12:26:36 +0200 |
parents | f8223dbea078 |
children | 15f5810bf181 |
files | src/ops.c src/version.c |
diffstat | 2 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/ops.c +++ b/src/ops.c @@ -113,7 +113,7 @@ static char_u *skip_comment __ARGS((char #endif static void block_prep __ARGS((oparg_T *oap, struct block_def *, linenr_T, int)); #if defined(FEAT_CLIPBOARD) || defined(FEAT_EVAL) -static void str_to_reg __ARGS((struct yankreg *y_ptr, int type, char_u *str, long len, long blocklen, int str_list)); +static void str_to_reg __ARGS((struct yankreg *y_ptr, int yank_type, char_u *str, long len, long blocklen, int str_list)); #endif static int ends_in_white __ARGS((linenr_T lnum)); #ifdef FEAT_COMMENTS