Skip to content

Commit

Permalink
Remove duplicate 'return' (copy-and-paste error).
Browse files Browse the repository at this point in the history
  • Loading branch information
alltheblinkythings committed Dec 29, 2015
1 parent bc9493e commit 9d7c2fd
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion cores/esp8266/cbuf.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ int ICACHE_RAM_ATTR cbuf::read() {

char result = *_begin;
_begin = wrap_if_bufend(_begin + 1);
return result;
return static_cast<int>(result);
}

Expand Down

0 comments on commit 9d7c2fd

Please sign in to comment.