Skip to content

Commit

Permalink
Resolved warning with wrong bytes number
Browse files Browse the repository at this point in the history
  • Loading branch information
filipciesielski7 committed Jan 12, 2022
1 parent 0a38161 commit 9b02977
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/server.c
Original file line number Diff line number Diff line change
Expand Up @@ -756,7 +756,7 @@ void handleConnection(int connectionSocketDescriptor)
}
else
{
write(connectionSocketDescriptor, "At this moment there are to many users connected to the server. Please try again later!\n", 90);
write(connectionSocketDescriptor, "At this moment there are to many users connected to the server. Please try again later!\n", 89);
close(connectionSocketDescriptor);
printf("New user can't be added due to slots limit\n");
}
Expand Down

0 comments on commit 9b02977

Please sign in to comment.