Rename allocator to allocator_t

This commit is contained in:
Vitaliy Filippov
2025-03-13 00:53:34 +03:00
parent b760951aa7
commit 263a3b5ad6
7 changed files with 14 additions and 14 deletions
+1 -1
View File
@@ -27,7 +27,7 @@ int disk_tool_t::raw_resize()
return r;
// Check parameters and fill allocator
fprintf(stderr, "Reading metadata\n");
data_alloc = new allocator((new_data_len < dsk.data_len ? dsk.data_len : new_data_len) / dsk.data_block_size);
data_alloc = new allocator_t((new_data_len < dsk.data_len ? dsk.data_len : new_data_len) / dsk.data_block_size);
r = process_meta(
[this](blockstore_meta_header_v2_t *hdr)
{