Unverified Commit 90c01dab authored by Me No Dev's avatar Me No Dev Committed by GitHub

Fix build error in ESP-IDF

Fixes: https://github.com/espressif/arduino-esp32/issues/5562
parent 000d967d
......@@ -29,7 +29,7 @@ static size_t cplstr(void *dst, const void * src, size_t max_len){
//copy up to max_len chars from src to dst, adding spaces up to max_len. do not terminate
static void cplstrsp(void *dst, const void * src, size_t max_len){
size_t l = cplstr(dst, src, max_len);
for(l; l < max_len; l++){
for(; l < max_len; l++){
((uint8_t*)dst)[l] = 0x20;
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment