HAL_Linux: removed 0 timeout from sendto call

This commit is contained in:
Andrew Tridgell 2015-07-29 08:36:50 +10:00 committed by Randy Mackay
parent 879f4f7555
commit bbc8bdcef3

View File

@ -19,7 +19,7 @@ UDPDevice::~UDPDevice()
ssize_t UDPDevice::write(const uint8_t *buf, uint16_t n)
{
return socket.sendto(buf, n, _ip, _port, 0);
return socket.sendto(buf, n, _ip, _port);
}
ssize_t UDPDevice::read(uint8_t *buf, uint16_t n)