blockstoragedevice.h: fix indentation.

This commit is contained in:
Maxim Poliakovski
2026-03-10 16:31:42 +01:00
parent 46901d8d03
commit b62bb5ffa4
+14 -14
View File
@@ -50,20 +50,20 @@ public:
protected:
void fill_cache(const int nblocks);
ImgFile img_file;
uint64_t size_bytes = 0; // image file size in bytes
uint64_t size_blocks = 0; // image file size in blocks
uint64_t max_blocks = 0; // maximum number of blocks supported
uint64_t cur_fpos = 0; // current image file pointer position
uint64_t write_size = 0; // number of bytes to write next
uint32_t block_size = 512; // physical block size
uint32_t raw_blk_size = 512; // block size for raw images (CD-ROM)
uint32_t data_offset = 0; // offset to block data for raw images
uint32_t cache_blocks = 0;
uint32_t cache_size = 0; // cache size
uint32_t remain_size = 0;
bool is_writeable = false;
bool is_ready = false; // ready for operation
ImgFile img_file;
uint64_t size_bytes = 0; // image file size in bytes
uint64_t size_blocks = 0; // image file size in blocks
uint64_t max_blocks = 0; // maximum number of blocks supported
uint64_t cur_fpos = 0; // current image file pointer position
uint64_t write_size = 0; // number of bytes to write next
uint32_t block_size = 512; // physical block size
uint32_t raw_blk_size = 512; // block size for raw images (CD-ROM)
uint32_t data_offset = 0; // offset to block data for raw images
uint32_t cache_blocks = 0;
uint32_t cache_size = 0; // cache size
uint32_t remain_size = 0;
bool is_writeable = false;
bool is_ready = false; // ready for operation
std::unique_ptr<char[]> data_cache;
};