1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-21 21:22:31 +03:00

Remove duplicate 'return' (copy-and-paste error).

This commit is contained in:
Christopher Pascoe
2015-12-29 17:04:15 -05:00
parent bc9493e690
commit 9d7c2fd5be

View File

@ -33,7 +33,6 @@ int ICACHE_RAM_ATTR cbuf::read() {
char result = *_begin; char result = *_begin;
_begin = wrap_if_bufend(_begin + 1); _begin = wrap_if_bufend(_begin + 1);
return result;
return static_cast<int>(result); return static_cast<int>(result);
} }