diff src/version.c @ 26829:88a33cf5aeb6 v8.2.3943

patch 8.2.3943: compiler warning from gcc for uninitialized variable Commit: https://github.com/vim/vim/commit/491669701c72578f273db53e579d8a03a9deac0c Author: Bram Moolenaar <Bram@vim.org> Date: Thu Dec 30 10:51:45 2021 +0000 patch 8.2.3943: compiler warning from gcc for uninitialized variable Problem: Compiler warning from gcc for uninitialized variable. Solution: Initialize variable. (closes https://github.com/vim/vim/issues/9429)
author Bram Moolenaar <Bram@vim.org>
date Thu, 30 Dec 2021 12:00:03 +0100
parents 3949037c47f9
children 537fdb6653a9
line wrap: on
line diff
--- a/src/version.c
+++ b/src/version.c
@@ -750,6 +750,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    3943,
+/**/
     3942,
 /**/
     3941,