1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-13 13:01:55 +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; _port = 443;
} }
} else { } 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; return false;
} }
_transportTraits = TransportTraitsPtr(new TransportTraits()); _transportTraits = TransportTraitsPtr(new TransportTraits());