Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
aremmell committed Feb 2, 2024
1 parent 84b3a83 commit e08ea54
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sample/balserver.cc
Original file line number Diff line number Diff line change
Expand Up @@ -161,8 +161,9 @@ scoped_socket* bal::server::get_existing_client(bal_descriptor sd)

void bal::server::rem_existing_client(bal_descriptor sd)
{
if (_clients.erase(sd) > 0)
if (_clients.erase(sd) > 0) {
PRINT("now have %zu client(s)", _clients.size());
}
}

void bal::server::on_client_disconnect(const bal_socket* s, bool error)
Expand Down

0 comments on commit e08ea54

Please sign in to comment.