Skip to content

Commit 1f4ea9c

Browse files
committed
fix: PR problems solved (operador >= and pointers)
1 parent 07be0ca commit 1f4ea9c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

examples/ChargenServer/ChargenServer.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,8 @@ void handleClientError(void* arg, AsyncClient* client, int error) {
7575
Serial.println("Cleaning up global client pointer due to error.");
7676
AsyncClientChargen = nullptr;
7777
}
78-
// We do not need to call "delete client" here because onDisconnect will do it.
79-
// If the error is critical, we will do it.
78+
// We do not need to call "delete client" here because onDisconnect will do it
79+
// If the error is critical we will do it.
8080
if (client->connected()) {
8181
client->close();
8282
}

0 commit comments

Comments
 (0)