removed redundant endding semicolons

This commit is contained in:
2025-03-07 21:12:21 +09:00
parent e56c45b3bf
commit ecc1d4580f
7 changed files with 11 additions and 11 deletions

View File

@ -483,7 +483,7 @@ func (ctl *server_ctl_server_conns_id_routes_id_peers) ServeHTTP(w http.Response
r.pts_mtx.Lock()
for _, pi = range r.pts_map.get_sorted_keys() {
var p *ServerPeerConn
p = r.pts_map[pi];
p = r.pts_map[pi]
jcp = append(jcp, json_out_server_peer{
Id: p.conn_id,
ServerPeerAddr: p.conn.RemoteAddr().String(),