Fix else indentation

This commit is contained in:
Ryan Huffman 2016-01-26 09:36:40 -08:00
parent 0e1742588b
commit 5268ef8ac2

View file

@ -288,8 +288,7 @@ int64_t AudioInjector::injectNextFrame() {
if (_options.loop) { if (_options.loop) {
// we were asked to loop, set our send offset to 0 // we were asked to loop, set our send offset to 0
_currentSendOffset = 0; _currentSendOffset = 0;
} } else {
else {
// we weren't to loop, say that we're done now // we weren't to loop, say that we're done now
finish(); finish();
return NEXT_FRAME_DELTA_ERROR_OR_FINISHED; return NEXT_FRAME_DELTA_ERROR_OR_FINISHED;