# HG changeset patch # User Bram Moolenaar # Date 1581626703 -3600 # Node ID 5b6f420e7352d151692eaff103ee6068f021936a # Parent fddabbb2fbd35cbac08c90a2f0bb1d7184690e11 patch 8.2.0254: compiler warning for checking size_t to be negative Commit: https://github.com/vim/vim/commit/ae8d2de3a9c0436a543c7d46071104af31ff6db7 Author: Bram Moolenaar Date: Thu Feb 13 21:42:24 2020 +0100 patch 8.2.0254: compiler warning for checking size_t to be negative Problem: Compiler warning for checking size_t to be negative. Solution: Only check for zero. (Zoltan Arpadffy) diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -743,6 +743,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 254, +/**/ 253, /**/ 252, diff --git a/src/vim9compile.c b/src/vim9compile.c --- a/src/vim9compile.c +++ b/src/vim9compile.c @@ -138,7 +138,7 @@ lookup_local(char_u *name, size_t len, c { int idx; - if (len <= 0) + if (len == 0) return -1; for (idx = 0; idx < cctx->ctx_locals.ga_len; ++idx) { @@ -160,7 +160,7 @@ lookup_arg(char_u *name, size_t len, cct { int idx; - if (len <= 0) + if (len == 0) return -1; for (idx = 0; idx < cctx->ctx_ufunc->uf_args.ga_len; ++idx) {