Commit f44cf791 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

ssh: inhibit coverity warning with (void)

CID 1397391 (#1 of 1): Unchecked return value (CHECKED_RETURN)
parent 21a7a96c
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2866,7 +2866,7 @@ static CURLcode ssh_block_statemach(struct connectdata *conn,
      if(LIBSSH2_SESSION_BLOCK_OUTBOUND & dir)
        fd_write = sock;
      /* wait for the socket to become ready */
      Curl_socket_check(fd_read, CURL_SOCKET_BAD, fd_write,
      (void)Curl_socket_check(fd_read, CURL_SOCKET_BAD, fd_write,
                              left>1000?1000:left); /* ignore result */
    }
#endif