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

Merge pull request #1976 from achingbrain/patch-1

Switch sprintf arguments in SSDPClass::_send around
This commit is contained in:
Ivan Grokhotkov 2016-05-05 21:54:57 -05:00
commit 9663295755

View File

@ -206,9 +206,9 @@ void SSDPClass::_send(ssdp_method_t method){
(method == NONE)?_ssdp_response_template:_ssdp_notify_template,
SSDP_INTERVAL,
_modelName, _modelNumber,
_uuid,
(method == NONE)?"ST":"NT",
_deviceType,
_uuid,
IP2STR(&ip), _port, _schemaURL
);