# HG changeset patch # User Christian Brabandt # Date 1503171004 -7200 # Node ID a1014f647b61649317ca06efc71074d10567b908 # Parent a740357289a594057e560cbc05c1a85b8a68ce44 patch 8.0.0969: Coverity warning for unused return value commit https://github.com/vim/vim/commit/dc926dd0dd0ef72fe7993f134f2cc1551cd269ea Author: Bram Moolenaar Date: Sat Aug 19 21:26:44 2017 +0200 patch 8.0.0969: Coverity warning for unused return value Problem: Coverity warning for unused return value. Solution: Add (void) to avoid the warning. diff --git a/src/channel.c b/src/channel.c --- a/src/channel.c +++ b/src/channel.c @@ -3559,7 +3559,7 @@ channel_set_nonblock(channel_T *channel, ioctlsocket(fd, FIONBIO, &val); #else - fcntl(fd, F_SETFL, O_NONBLOCK); + (void)fcntl(fd, F_SETFL, O_NONBLOCK); #endif ch_part->ch_nonblocking = TRUE; } diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -770,6 +770,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 969, +/**/ 968, /**/ 967,