From c450f644e6a6abfd5c76d7d05ae68546fc9846bd Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sat, 7 Oct 2023 08:30:07 +0200 Subject: [PATCH] lib/xiph/OggSyncState: fix indent --- src/lib/xiph/OggSyncState.cxx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) 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