From eda96b942983b813ba048aee495e4395ea55f1f9 Mon Sep 17 00:00:00 2001 From: leipeng Date: Fri, 17 Feb 2023 10:53:54 +0800 Subject: [PATCH] socket_connection.cc: remove redundant brace --- sql/conn_handler/socket_connection.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sql/conn_handler/socket_connection.cc b/sql/conn_handler/socket_connection.cc index 6591d1545768..a8d2f83f9a8b 100644 --- a/sql/conn_handler/socket_connection.cc +++ b/sql/conn_handler/socket_connection.cc @@ -1342,7 +1342,7 @@ const Listen_socket *Mysqld_socket_listener::get_listen_socket() { if (m_poll_info.m_fds[i].revents & POLLIN) #else // HAVE_POLL if (FD_ISSET(mysql_socket_getfd(m_socket_vector[i].m_socket), - &m_select_info.m_read_fds)) { + &m_select_info.m_read_fds)) #endif // HAVE_POLL { return &m_socket_vector[i];