# HG changeset patch # User Bram Moolenaar # Date 1367631627 -7200 # Node ID 923277a9cce4316d6b4cb3c6571dab538a6b0108 # Parent 19b48d794174b1f600eb75df5e203d2b8cfdb44e updated for version 7.3.920 Problem: Compiler warning for size_t to int. Solution: Add a type cast. (Mike Williams) diff --git a/src/misc1.c b/src/misc1.c --- a/src/misc1.c +++ b/src/misc1.c @@ -10139,7 +10139,7 @@ expand_path_option(curdir, gap) # if defined(MSWIN) || defined(MSDOS) /* Avoid the path ending in a backslash, it fails when a comma is * appended. */ - len = STRLEN(buf); + len = (int)STRLEN(buf); if (buf[len - 1] == '\\') buf[len - 1] = '/'; # endif diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -729,6 +729,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 920, +/**/ 919, /**/ 918,