From: Bram Moolenaar Date: Fri, 24 May 2019 15:56:14 +0000 (+0200) Subject: patch 8.1.1383: warning for size_t/int mixup X-Git-Tag: v8.1.1383 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d33a764123a8aedb20cd84aeff3b94810ee67c4c;p=thirdparty%2Fvim.git 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 index e57c101d72..f7b3dda312 100644 --- 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 index b5cee8ead1..b774f3d7dd 100644 --- a/src/version.c +++ b/src/version.c @@ -767,6 +767,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1383, /**/ 1382, /**/