Skip to content

Commit

Permalink
socket_connection.cc: remove redundant brace
Browse files Browse the repository at this point in the history
  • Loading branch information
rockeet committed Mar 1, 2023
1 parent 526e737 commit eda96b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sql/conn_handler/socket_connection.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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];
Expand Down

0 comments on commit eda96b9

Please sign in to comment.