commit | a5348f241bbbb6d5db863d666fa9ca72fc95037a | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Sun Sep 04 11:42:22 2022 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Sun Sep 04 11:42:22 2022 +0100 |
tree | 5395b780659a206cb73f8080b2b59ee0f433a96b | |
parent | 5fbbec180b623cd6ebfc9528be6fa70b4cf664d4 [diff] [blame] |
patch 9.0.0373: Coverity warns for NULL check and unused return value Problem: Coverity warns for NULL check and unused return value. Solution: Remove the NULL check, it was already checked earlier. Add (void) to ignore the return value.
diff --git a/src/version.c b/src/version.c index 0209280..c768302 100644 --- a/src/version.c +++ b/src/version.c
@@ -708,6 +708,8 @@ static int included_patches[] = { /* Add new patch number below this line */ /**/ + 373, +/**/ 372, /**/ 371,