1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-04 18:03:20 +03:00

Merge pull request #1413 from Links2004/master

fix unused warning #1407
This commit is contained in:
Ivan Grokhotkov 2016-01-13 09:46:10 +03:00
commit 87c59b1ca2

View File

@ -119,7 +119,7 @@ wl_status_t ESP8266WiFiMulti::run(void) {
delay(10);
status = WiFi.status();
}
#ifdef DEBUG_ESP_WIFI
IPAddress ip;
uint8_t * mac;
switch(status) {
@ -142,6 +142,7 @@ wl_status_t ESP8266WiFiMulti::run(void) {
DEBUG_WIFI_MULTI("[WIFI] Connecting Failed (%d).\n", status);
break;
}
#endif
} else {
DEBUG_WIFI_MULTI("[WIFI] no matching wifi found!\n");
}