strat: use m_ for member variables
This commit is contained in:
@@ -49,7 +49,7 @@ namespace ams::updater {
|
||||
}
|
||||
|
||||
Result BisAccessor::Initialize() {
|
||||
return fs::OpenBisPartition(std::addressof(this->storage), this->partition_id);
|
||||
return fs::OpenBisPartition(std::addressof(m_storage), m_partition_id);
|
||||
}
|
||||
|
||||
void BisAccessor::Finalize() {
|
||||
@@ -58,12 +58,12 @@ namespace ams::updater {
|
||||
|
||||
Result BisAccessor::Read(void *dst, size_t size, u64 offset) {
|
||||
AMS_ABORT_UNLESS((offset % SectorAlignment) == 0);
|
||||
return this->storage->Read(static_cast<u32>(offset), dst, size);
|
||||
return m_storage->Read(static_cast<u32>(offset), dst, size);
|
||||
}
|
||||
|
||||
Result BisAccessor::Write(u64 offset, const void *src, size_t size) {
|
||||
AMS_ABORT_UNLESS((offset % SectorAlignment) == 0);
|
||||
return this->storage->Write(static_cast<u32>(offset), src, size);
|
||||
return m_storage->Write(static_cast<u32>(offset), src, size);
|
||||
}
|
||||
|
||||
Result BisAccessor::Write(u64 offset, size_t size, const char *bip_path, void *work_buffer, size_t work_buffer_size) {
|
||||
|
||||
Reference in New Issue
Block a user