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:
@ -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());
|
||||||
|
Reference in New Issue
Block a user