workaround windows gcc Template issue (#228, #229)

This commit is contained in:
Links
2017-08-21 21:39:14 +02:00
parent b6c27f74cd
commit f40a390ab1

View File

@ -624,7 +624,7 @@ size_t WebSockets::write(WSclient_t * client, uint8_t *out, size_t n) {
break;
}
len = client->tcp->write(out, n);
len = client->tcp->write((const uint8_t*)out, n);
if(len) {
t = millis();
out += len;