Skip to content

Commit 1cffd37

Browse files
committed
updated for version 7.3.744
Problem: 64 bit compiler warning. Solution: Add type cast. (Mike Williams)
1 parent 88a781e commit 1cffd37

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/ex_cmds.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6460,7 +6460,7 @@ helptags_one(dir, ext, tagfname, add_help_tags)
64606460
/*
64616461
* Find all *.txt files.
64626462
*/
6463-
dirlen = STRLEN(dir);
6463+
dirlen = (int)STRLEN(dir);
64646464
STRCPY(NameBuff, dir);
64656465
STRCAT(NameBuff, "/**/*");
64666466
STRCAT(NameBuff, ext);

src/version.c

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

726726
static int included_patches[] =
727727
{ /* Add new patch number below this line */
728+
/**/
729+
744,
728730
/**/
729731
743,
730732
/**/

0 commit comments

Comments
 (0)