Skip to content

Commit

Permalink
Fix compilation when debug is enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
igrr committed Apr 13, 2016
1 parent a455f22 commit 4638000
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/ESP8266HTTPClient/src/ESP8266HTTPClient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Expand Down

0 comments on commit 4638000

Please sign in to comment.