diff options
author | bd <bdunahu@operationnull.com> | 2025-03-11 17:24:49 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-03-11 17:24:49 -0400 |
commit | 979723533989a38660ece630b9e458cb3aa61bda (patch) | |
tree | 99ffd87c42c7179561877254431cb78fca02a5f3 /src/storage | |
parent | 282aff5a3d1b6f9678453dfa3e216849d5b1d954 (diff) |
clarify macro names, implement load in CLI, fix many display issues
Diffstat (limited to 'src/storage')
-rw-r--r-- | src/storage/cache.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/storage/cache.cc b/src/storage/cache.cc index a73390b..14a6e61 100644 --- a/src/storage/cache.cc +++ b/src/storage/cache.cc @@ -135,7 +135,7 @@ void Cache::fetch_resource(int expected) r = this->lower->write_line( L1CACHE, actual, ((index << LINE_SPEC) + - (meta->at(0) << (L1_CACHE_SPEC + LINE_SPEC)))); + (meta->at(0) << (L1_CACHE_LINE_SPEC + LINE_SPEC)))); if (r == OK) { meta->at(1) = -1; } |