Skip to content

Commit

Permalink
clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
hcs64 committed Oct 2, 2024
1 parent 958e84b commit 9a81661
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cd/split.ixx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ int32_t byte_offset_by_magic(int32_t lba_start, int32_t lba_end, std::fstream &s
{
int32_t write_offset = std::numeric_limits<int32_t>::max();

if (lba_start > lba_end) {
if(lba_start > lba_end)
{
return write_offset;
}
const uint32_t sectors_to_check = lba_end - lba_start;
Expand Down

0 comments on commit 9a81661

Please sign in to comment.