lib/xiph/OggSyncState: fix indent

This commit is contained in:
Max Kellermann 2023-10-07 08:30:07 +02:00
parent 496184b1bc
commit c450f644e6
1 changed files with 8 additions and 8 deletions

View File

@ -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