diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-04-03 18:13:57 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-04-03 18:13:57 +0200 |
commit | d1e9dc272355fe3ab112af5f04b0516b2e9a4fa6 (patch) | |
tree | 53bc930ab3735c42d1f967513f075a8f9611f226 /src/version.c | |
parent | 01603a9970421272621f7c1ecdc560b522c92e61 (diff) | |
download | vim-git-8.2.0506.tar.gz |
patch 8.2.0506: Coverity complains about ignoring return valuev8.2.0506
Problem: Coverity complains about ignoring return value.
Solution: Add (void).
Diffstat (limited to 'src/version.c')
-rw-r--r-- | src/version.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/version.c b/src/version.c index 447cf2718..a53f44b04 100644 --- a/src/version.c +++ b/src/version.c @@ -739,6 +739,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 506, +/**/ 505, /**/ 504, |