Skip to content

Commit 9aad34b

Browse files
committed
updated for version 7.4.257
Problem: Compiler warning, possibly for mismatch in parameter name. Solution: Rename the parameter in the declaration.
1 parent ed2370b commit 9aad34b

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/ops.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ static char_u *skip_comment __ARGS((char_u *line, int process, int include_space
113113
#endif
114114
static void block_prep __ARGS((oparg_T *oap, struct block_def *, linenr_T, int));
115115
#if defined(FEAT_CLIPBOARD) || defined(FEAT_EVAL)
116-
static void str_to_reg __ARGS((struct yankreg *y_ptr, int type, char_u *str, long len, long blocklen, int str_list));
116+
static void str_to_reg __ARGS((struct yankreg *y_ptr, int yank_type, char_u *str, long len, long blocklen, int str_list));
117117
#endif
118118
static int ends_in_white __ARGS((linenr_T lnum));
119119
#ifdef FEAT_COMMENTS

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -734,6 +734,8 @@ static char *(features[]) =
734734

735735
static int included_patches[] =
736736
{ /* Add new patch number below this line */
737+
/**/
738+
257,
737739
/**/
738740
256,
739741
/**/

0 commit comments

Comments
 (0)