1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-12 01:53:07 +03:00

Fix compilation when debug is enabled

This commit is contained in:
Ivan Grokhotkov
2016-04-13 14:02:10 +03:00
parent a455f22587
commit 46380003d5

View File

@ -163,7 +163,7 @@ bool HTTPClient::begin(String url)
_port = 443;
}
} else {
DEBUG_HTTPCLIENT("[HTTP-Client][begin] protocol: %s unknown?!\n", protocol.c_str());
DEBUG_HTTPCLIENT("[HTTP-Client][begin] protocol: %s unknown?!\n", _protocol.c_str());
return false;
}
_transportTraits = TransportTraitsPtr(new TransportTraits());