From 5284b85d07a75d043bdf85bd3f63a0703675028a Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Sun, 20 May 2018 08:46:06 +0200 Subject: socket.c: Ignore PVS/V547: False positive https://github.com/neovim/neovim/pull/8218#issuecomment-383412049 --- src/nvim/event/socket.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/nvim/event/socket.c b/src/nvim/event/socket.c index 6f45b09fce..6fcb9f7e7a 100644 --- a/src/nvim/event/socket.c +++ b/src/nvim/event/socket.c @@ -252,7 +252,7 @@ tcp_retry: } status = 1; LOOP_PROCESS_EVENTS_UNTIL(&main_loop, NULL, timeout, status != 1); - if (status == 0) { + if (status == 0) { // -V547 stream_init(NULL, stream, -1, uv_stream); success = true; } else if (is_tcp && addrinfo->ai_next) { -- cgit