Merge pull request #2057 from zfields/patch-1

Match return value to type in available()
This commit is contained in:
Cristian Maglie 2014-05-23 20:28:53 +02:00
commit fb8e439f3b
1 changed files with 1 additions and 1 deletions

View File

@ -426,7 +426,7 @@ void HardwareSerial::end()
int HardwareSerial::available(void)
{
return (unsigned int)(SERIAL_BUFFER_SIZE + _rx_buffer->head - _rx_buffer->tail) % SERIAL_BUFFER_SIZE;
return (int)(SERIAL_BUFFER_SIZE + _rx_buffer->head - _rx_buffer->tail) % SERIAL_BUFFER_SIZE;
}
int HardwareSerial::peek(void)