1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-30 16:24:09 +03:00

Fixing warnings in Ethernet library (Paul Stoffregen).

http://code.google.com/p/arduino/issues/detail?id=208
This commit is contained in:
David A. Mellis
2011-10-02 10:17:33 -04:00
parent 85c109f255
commit 965480f148
8 changed files with 12 additions and 13 deletions

View File

@ -69,7 +69,7 @@ EthernetClient EthernetServer::available()
size_t EthernetServer::write(uint8_t b)
{
write(&b, 1);
return write(&b, 1);
}
size_t EthernetServer::write(const uint8_t *buffer, size_t size)