updated build system
All checks were successful
BlockStorage/repertory/pipeline/head This commit looks good

This commit is contained in:
2025-01-05 14:55:44 -06:00
parent ddbebef850
commit 77088e6608
2 changed files with 8 additions and 8 deletions

View File

@ -133,7 +133,7 @@ auto enc_file::truncate(std::size_t size) -> bool {
std::size_t total_read{};
data_buffer data(
utils::encryption::encrypting_reader::get_data_chunk_size());
if (not read(data, offset), &total_read) {
if (not i_file::read(data, offset, &total_read)) {
return false;
}
data.resize(remain);
@ -142,7 +142,7 @@ auto enc_file::truncate(std::size_t size) -> bool {
return false;
}
return write(data, offset);
return i_file::write(data, offset);
}
auto begin_chunk{