[ESP8266] Fixed format overflow warning

pull/142/head
jgromes 2020-05-01 13:50:29 +02:00
rodzic 9477789e9b
commit eccf6e3865
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -131,7 +131,7 @@ int16_t ESP8266::closeTransportConnection() {
int16_t ESP8266::send(const char* data) {
// build AT command
char lenStr[8];
char lenStr[12];
sprintf(lenStr, "%d", strlen(data));
const char* atStr = "AT+CIPSEND=";
#ifdef RADIOLIB_STATIC_ONLY