Skip to content

Commit

Permalink
ci(pre-commit): Apply automatic fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci-lite[bot] authored Jun 13, 2024
1 parent 1e2bf1b commit 3eb2390
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/Network/src/NetworkClient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,7 @@ size_t NetworkClient::readBytes(char *buffer, size_t length) {
size_t left = length, sofar = 0;
int r = 0, to = millis() + getTimeout();
while (left) {
r = read((uint8_t*)buffer+sofar, left);
r = read((uint8_t *)buffer + sofar, left);
if (r < 0) {
// Error has occurred
break;
Expand Down

0 comments on commit 3eb2390

Please sign in to comment.