diff --git a/src/lib/xiph/OggSyncState.cxx b/src/lib/xiph/OggSyncState.cxx index 12ebd8b41..35eb2ac8e 100644 --- a/src/lib/xiph/OggSyncState.cxx +++ b/src/lib/xiph/OggSyncState.cxx @@ -7,16 +7,16 @@ bool OggSyncState::Feed(size_t size) { - char *buffer = ogg_sync_buffer(&oy, size); - if (buffer == nullptr) - return false; + char *buffer = ogg_sync_buffer(&oy, size); + if (buffer == nullptr) + return false; - size_t nbytes = reader.Read(buffer, size); - if (nbytes == 0) - return false; + size_t nbytes = reader.Read(buffer, size); + if (nbytes == 0) + return false; - ogg_sync_wrote(&oy, nbytes); - return true; + ogg_sync_wrote(&oy, nbytes); + return true; } bool