Skip to content

Commit d62bc06

Browse files
committed
updated for version 7.4.087
Problem: Compiler warning on 64 bit Windows systems. Solution: Fix type cast. (Mike Williams)
1 parent a550bc6 commit d62bc06

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/ops.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2193,7 +2193,8 @@ op_replace(oap, c)
21932193
else
21942194
{
21952195
/* Replacing with \r or \n means splitting the line. */
2196-
after_p = alloc_check((unsigned)oldlen + 1 + n - STRLEN(newp));
2196+
after_p = alloc_check(
2197+
(unsigned)(oldlen + 1 + n - STRLEN(newp)));
21972198
if (after_p != NULL)
21982199
STRMOVE(after_p, oldp);
21992200
}

src/version.c

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

739739
static int included_patches[] =
740740
{ /* Add new patch number below this line */
741+
/**/
742+
87,
741743
/**/
742744
86,
743745
/**/

0 commit comments

Comments
 (0)