Skip to content

Commit 64379f2

Browse files
committed
updated for version 7.3.238
Problem: Compiler warning for conversion. Solution: Add type cast. (Mike Williams)
1 parent 961eab7 commit 64379f2

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/ex_getln.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5025,7 +5025,7 @@ ExpandRTDir(pat, num_file, file, dirnames)
50255025

50265026
*num_file = 0;
50275027
*file = NULL;
5028-
pat_len = STRLEN(pat);
5028+
pat_len = (int)STRLEN(pat);
50295029
ga_init2(&ga, (int)sizeof(char *), 10);
50305030

50315031
for (i = 0; dirnames[i] != NULL; ++i)

src/version.c

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

710710
static int included_patches[] =
711711
{ /* Add new patch number below this line */
712+
/**/
713+
238,
712714
/**/
713715
237,
714716
/**/

0 commit comments

Comments
 (0)