commit | 6a717f17ec6b09634be1c29e0ac4c35213f7b32d | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Tue Jan 24 20:47:50 2017 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Tue Jan 24 20:47:50 2017 +0100 |
tree | c6f88304ae5fb437f2fb2836f71a66041ab52147 | |
parent | b031c4ea04eb1e37a873fbb85e90d835aa1e2b1c [diff] [blame] |
patch 8.0.0236: gcc complains about uninitialized variable Problem: Gcc complains that a variable may be used uninitialized. Confusion between variable and label name. (John Marriott) Solution: Initialize it. Rename end to end_lnum.
diff --git a/src/version.c b/src/version.c index 65208d0..684a244 100644 --- a/src/version.c +++ b/src/version.c
@@ -765,6 +765,8 @@ static int included_patches[] = { /* Add new patch number below this line */ /**/ + 236, +/**/ 235, /**/ 234,