Commit 5cfff190 authored by Luc's avatar Luc Committed by Me No Dev

removing log (#2140)

* Use right function for BSSID

* removing log
parent 7a332864
...@@ -439,9 +439,8 @@ uint8_t WiFiClient::connected() ...@@ -439,9 +439,8 @@ uint8_t WiFiClient::connected()
if (_connected) { if (_connected) {
uint8_t dummy; uint8_t dummy;
int res = recv(fd(), &dummy, 0, MSG_DONTWAIT); int res = recv(fd(), &dummy, 0, MSG_DONTWAIT);
if(res < 0) { // avoid unused var warning by gcc
log_e("RES: %d", res); (void)res;
}
switch (errno) { switch (errno) {
case EWOULDBLOCK: case EWOULDBLOCK:
case ENOENT: //caused by vfs case ENOENT: //caused by vfs
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment