Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 96f3a8c

Browse files
authoredNov 28, 2024··
Merge pull request #403 from pennam/ping-param-fix
WiFiS3 ping add missing parameter
2 parents c7ad094 + e6500c1 commit 96f3a8c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎libraries/WiFiS3/src/WiFi.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -576,7 +576,7 @@ int CWifi::ping(IPAddress ip, uint8_t ttl, uint8_t count) {
576576
int CWifi::ping(const String &hostname, uint8_t ttl, uint8_t count)
577577
/* -------------------------------------------------------------------------- */
578578
{
579-
return ping(hostname.c_str(), ttl);
579+
return ping(hostname.c_str(), ttl, count);
580580
}
581581

582582
/* -------------------------------------------------------------------------- */

0 commit comments

Comments
 (0)
Please sign in to comment.