Skip to content

Commit

Permalink
WiFiS3 ping add missing parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
pennam committed Nov 28, 2024
1 parent 428df2a commit e6500c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/WiFiS3/src/WiFi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -576,7 +576,7 @@ int CWifi::ping(IPAddress ip, uint8_t ttl, uint8_t count) {
int CWifi::ping(const String &hostname, uint8_t ttl, uint8_t count)
/* -------------------------------------------------------------------------- */
{
return ping(hostname.c_str(), ttl);
return ping(hostname.c_str(), ttl, count);
}

/* -------------------------------------------------------------------------- */
Expand Down

0 comments on commit e6500c1

Please sign in to comment.