diff options
Diffstat (limited to 'Kernel/Storage/Partition/EBRPartitionTable.cpp')
-rw-r--r-- | Kernel/Storage/Partition/EBRPartitionTable.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Kernel/Storage/Partition/EBRPartitionTable.cpp b/Kernel/Storage/Partition/EBRPartitionTable.cpp index 8d2eefbcec..d3889093a9 100644 --- a/Kernel/Storage/Partition/EBRPartitionTable.cpp +++ b/Kernel/Storage/Partition/EBRPartitionTable.cpp @@ -9,7 +9,7 @@ namespace Kernel { -Result<NonnullOwnPtr<EBRPartitionTable>, PartitionTable::Error> EBRPartitionTable::try_to_initialize(const StorageDevice& device) +Result<NonnullOwnPtr<EBRPartitionTable>, PartitionTable::Error> EBRPartitionTable::try_to_initialize(StorageDevice const& device) { auto table = adopt_nonnull_own_or_enomem(new (nothrow) EBRPartitionTable(device)).release_value_but_fixme_should_propagate_errors(); if (table->is_protective_mbr()) @@ -19,7 +19,7 @@ Result<NonnullOwnPtr<EBRPartitionTable>, PartitionTable::Error> EBRPartitionTabl return table; } -void EBRPartitionTable::search_extended_partition(const StorageDevice& device, MBRPartitionTable& checked_ebr, u64 current_block_offset, size_t limit) +void EBRPartitionTable::search_extended_partition(StorageDevice const& device, MBRPartitionTable& checked_ebr, u64 current_block_offset, size_t limit) { if (limit == 0) return; @@ -39,7 +39,7 @@ void EBRPartitionTable::search_extended_partition(const StorageDevice& device, M search_extended_partition(device, *next_ebr, current_block_offset, (limit - 1)); } -EBRPartitionTable::EBRPartitionTable(const StorageDevice& device) +EBRPartitionTable::EBRPartitionTable(StorageDevice const& device) : MBRPartitionTable(device) { if (!is_header_valid()) |