commit | be3dbda871ffd1b61f52b9519c23772f62381c67 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Tue Jul 26 11:42:34 2022 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Tue Jul 26 11:42:34 2022 +0100 |
tree | b9f61aa6bd2bfbe1e886f9ac7c4807d076c278fb | |
parent | 34a1f779791fd4137547fa72addeb147b7704604 [diff] [blame] |
patch 9.0.0075: some compilers warn for using an uninitialized variable Problem: Some compilers warn for using an uninitialized variable. (Tony Mechelynck) Solution: Initialize the variable.
diff --git a/src/version.c b/src/version.c index f7cbaf8..1909fd4 100644 --- a/src/version.c +++ b/src/version.c
@@ -736,6 +736,8 @@ static int included_patches[] = { /* Add new patch number below this line */ /**/ + 75, +/**/ 74, /**/ 73,