# HG changeset patch # User Bram Moolenaar # Date 1613849403 -3600 # Node ID 686af23ec1329f6eeca10e03b9e1b83c057e823c # Parent dca4c7dce63e484369d10d9858347d579734a793 patch 8.2.2536: Coverity complains about unchecked return value Commit: https://github.com/vim/vim/commit/dc167465f87a4f03f9e085597dfcfdde39fcd2b9 Author: Bram Moolenaar Date: Sat Feb 20 20:26:16 2021 +0100 patch 8.2.2536: Coverity complains about unchecked return value Problem: Coverity complains about unchecked return value. Solution: Add (void). diff --git a/src/userfunc.c b/src/userfunc.c --- a/src/userfunc.c +++ b/src/userfunc.c @@ -4020,7 +4020,7 @@ ex_defcompile(exarg_T *eap UNUSED) && ufunc->uf_def_status == UF_TO_BE_COMPILED && (ufunc->uf_flags & FC_DEAD) == 0) { - compile_def_function(ufunc, FALSE, FALSE, NULL); + (void)compile_def_function(ufunc, FALSE, FALSE, NULL); if (func_hashtab.ht_changed != changed) { diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -751,6 +751,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 2536, +/**/ 2535, /**/ 2534,