commit | e20b3eba731bafb97c609dd20a4c378c105acc0d | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Mon Aug 07 21:26:29 2017 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Mon Aug 07 21:26:29 2017 +0200 |
tree | 988d3623a23a41769c759129f3e1ac0d80cb4e4e | |
parent | 116a0f800c6a62e29c5af832df092507f1355c68 [diff] [blame] |
patch 8.0.0889: gcc gives warnings for uninitialized variables Problem: Gcc gives warnings for uninitialized variables. (Tony Mechelynck) Solution: Initialize variables even though they are not used.
diff --git a/src/version.c b/src/version.c index 5a1660a..e5cafdc 100644 --- a/src/version.c +++ b/src/version.c
@@ -770,6 +770,8 @@ static int included_patches[] = { /* Add new patch number below this line */ /**/ + 889, +/**/ 888, /**/ 887,