Skip to content

Commit

Permalink
Fix spacing inconsistency
Browse files Browse the repository at this point in the history
  • Loading branch information
Mapmo authored Feb 17, 2020
1 parent 0d170b3 commit 907e31d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OS_Practice_Homeworks/Homework_4/socket_solution/server.c
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ void ProcessClientInput(const int fd, const int sock, const int sock2, const cha
else
{
int64_t calc = parser1;
calc+= parser2;
calc += parser2;

if(calc >= 0 && calc <= UINT32_MAX)
{
Expand Down

0 comments on commit 907e31d

Please sign in to comment.