From: xie xingguo Date: Tue, 14 Jun 2016 01:43:58 +0000 (+0800) Subject: server: remove redundant semicolon X-Git-Tag: v11.0.0~172^2~3 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=eabd0b7b7bb858f72814d96fdf20f77666b39326;p=ceph.git server: remove redundant semicolon Signed-off-by: xie xingguo --- diff --git a/src/mds/Server.cc b/src/mds/Server.cc index 1b046b90a81b..0c014a422a7d 100644 --- a/src/mds/Server.cc +++ b/src/mds/Server.cc @@ -453,7 +453,7 @@ void Server::_session_logged(Session *session, uint64_t state_seq, bool open, ve // ms_handle_remote_reset() and realize they had in fact closed. // do this *before* sending the message to avoid a possible // race. - if (session->connection != NULL) {; + if (session->connection != NULL) { // Conditional because terminate_sessions will indiscrimately // put sessions in CLOSING whether they ever had a conn or not. session->connection->mark_disposable();