Skip to content

Commit 96f3a8c

Browse files
authored
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

Diff for: libraries/WiFiS3/src/WiFi.cpp

+1-1
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)