Drops std:: because string.h is included

pull/8841/head
Veijo Pesonen 2018-11-19 13:15:09 +02:00
parent 60b5547b65
commit f54b25073c
1 changed files with 1 additions and 1 deletions

View File

@ -241,7 +241,7 @@ const char *ESP8266Interface::get_ip_address()
} }
const char *ip_buff = _esp.ip_addr(); const char *ip_buff = _esp.ip_addr();
if (!ip_buff || std::strcmp(ip_buff, "0.0.0.0") == 0) { if (!ip_buff || strcmp(ip_buff, "0.0.0.0") == 0) {
return NULL; return NULL;
} }