Skip to content

Commit 3eb2390

Browse files
ci(pre-commit): Apply automatic fixes
1 parent 1e2bf1b commit 3eb2390

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: libraries/Network/src/NetworkClient.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -483,7 +483,7 @@ size_t NetworkClient::readBytes(char *buffer, size_t length) {
483483
size_t left = length, sofar = 0;
484484
int r = 0, to = millis() + getTimeout();
485485
while (left) {
486-
r = read((uint8_t*)buffer+sofar, left);
486+
r = read((uint8_t *)buffer + sofar, left);
487487
if (r < 0) {
488488
// Error has occurred
489489
break;

0 commit comments

Comments
 (0)