Skip to content

Commit

Permalink
Spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
lethosor committed Jun 25, 2023
1 parent ffbd5e2 commit 512f3e9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ int main(int argc, char **argv)
//--------------------------------------------------------------------------
socket.Initialize();

if(!socket.Listen("127.0.0.1", 6789))
if (!socket.Listen("127.0.0.1", 6789))
{
std::cerr << socket.DescribeError() << std::endl;
return 1;
Expand Down
2 changes: 1 addition & 1 deletion examples/EchoServer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ int main(int argc, char **argv)
//--------------------------------------------------------------------------
socket.Initialize();

if(!socket.Listen("127.0.0.1", 6789))
if (!socket.Listen("127.0.0.1", 6789))
{
std::cerr << socket.DescribeError() << std::endl;
return 1;
Expand Down

0 comments on commit 512f3e9

Please sign in to comment.