Skip to content

Commit

Permalink
sws whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
vszakats committed Apr 27, 2024
1 parent 8a34610 commit 15623fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/server/sws.c
Original file line number Diff line number Diff line change
Expand Up @@ -1640,7 +1640,7 @@ static void http_connect(curl_socket_t *infdp,
data_to_hex(readserver[i], (size_t)rc));
if(toc[i] - rc)
memmove(&readserver[i][0], &readserver[i][rc],
(size_t)(toc[i]-rc));
(size_t)(toc[i] - rc));
toc[i] -= rc;
}
}
Expand All @@ -1661,7 +1661,7 @@ static void http_connect(curl_socket_t *infdp,
data_to_hex(readclient[i], (size_t)rc));
if(tos[i] - rc)
memmove(&readclient[i][0], &readclient[i][rc],
(size_t)(tos[i]-rc));
(size_t)(tos[i] - rc));
tos[i] -= rc;
}
}
Expand Down

0 comments on commit 15623fd

Please sign in to comment.