From 574c7e349a2f6b7fb8d4bbe8eb63a2ac0b11de45 Mon Sep 17 00:00:00 2001 From: Benny Halevy Date: Wed, 6 Sep 2023 12:05:49 +0300 Subject: [PATCH] locator: topology: is_configured_this_node: delete spurious semicolumn Signed-off-by: Benny Halevy --- locator/topology.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/locator/topology.cc b/locator/topology.cc index cfb6a43307..08457a0882 100644 --- a/locator/topology.cc +++ b/locator/topology.cc @@ -145,7 +145,7 @@ bool topology::is_configured_this_node(const node& n) const { return _cfg.this_host_id == n.host_id(); } if (_cfg.this_endpoint != inet_address()) { // Selection by endpoint - return _cfg.this_endpoint == n.endpoint();; + return _cfg.this_endpoint == n.endpoint(); } return false; // No selection; }