Skip to content

Commit e85928a

Browse files
committed
patch 8.0.1003: 64 bit compiler warning
Problem: 64 bit compiler warning Solution: Add type cast. (Mike Williams)
1 parent 02e177d commit e85928a

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

src/channel.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4890,7 +4890,7 @@ win32_escape_arg(char_u *arg)
48904890
int has_spaces = FALSE;
48914891

48924892
/* First count the number of extra bytes required. */
4893-
slen = STRLEN(arg);
4893+
slen = (int)STRLEN(arg);
48944894
dlen = slen;
48954895
for (s = arg; *s != NUL; MB_PTR_ADV(s))
48964896
{

src/version.c

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

770770
static int included_patches[] =
771771
{ /* Add new patch number below this line */
772+
/**/
773+
1003,
772774
/**/
773775
1002,
774776
/**/

0 commit comments

Comments
 (0)