# HG changeset patch # User Bram Moolenaar # Date 1558713606 -7200 # Node ID 97ad98d95214707ee999926e4c1d34ce26c6a383 # Parent cf3f6a27089d05fdbc2ca830995f687119327b8b patch 8.1.1383: warning for size_t/int mixup commit https://github.com/vim/vim/commit/d33a764123a8aedb20cd84aeff3b94810ee67c4c Author: Bram Moolenaar Date: Fri May 24 17:56:14 2019 +0200 patch 8.1.1383: warning for size_t/int mixup Problem: Warning for size_t/int mixup. Solution: Change type. (Mike Williams) diff --git a/src/search.c b/src/search.c --- a/src/search.c +++ b/src/search.c @@ -1382,7 +1382,7 @@ do_search( { char_u *trunc; char_u off_buf[40]; - int off_len = 0; + size_t off_len = 0; // Compute msg_row early. msg_start(); diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -768,6 +768,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1383, +/**/ 1382, /**/ 1381,