Skip to content

Commit b8660aa

Browse files
committed
updated for version 7.3.621
Problem: Compiler warnings on 64 bit windows. Solution: Add type casts. (Mike Williams)
1 parent ae5a4dd commit b8660aa

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

src/ex_docmd.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3392,7 +3392,7 @@ set_one_cmd_context(xp, buff)
33923392
/* Find start of last argument (argument just before cursor): */
33933393
p = buff;
33943394
xp->xp_pattern = p;
3395-
len = STRLEN(buff);
3395+
len = (int)STRLEN(buff);
33963396
while (*p && p < buff + len)
33973397
{
33983398
if (*p == ' ' || *p == TAB)

src/search.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4621,7 +4621,8 @@ current_search(count, forward)
46214621
{
46224622
/* searching backwards, so set pos to last line and col */
46234623
pos.lnum = curwin->w_buffer->b_ml.ml_line_count;
4624-
pos.col = STRLEN(ml_get(curwin->w_buffer->b_ml.ml_line_count));
4624+
pos.col = (colnr_T)STRLEN(
4625+
ml_get(curwin->w_buffer->b_ml.ml_line_count));
46254626
}
46264627
}
46274628

src/version.c

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

715715
static int included_patches[] =
716716
{ /* Add new patch number below this line */
717+
/**/
718+
621,
717719
/**/
718720
620,
719721
/**/

0 commit comments

Comments
 (0)