diff options
author | bd <bdunahu@operationnull.com> | 2025-03-10 19:42:01 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-03-10 19:42:01 -0400 |
commit | 3f07846136767cbed13fd83baaba416f19c61667 (patch) | |
tree | 140af0aec8ee90ac4c15e8b877ff2dc88f33d7ae /src/storage/storage.cc | |
parent | 141494cb961b72a7ad56c3e754af43a07f1b8c23 (diff) |
CLI view, clock, store, program banner
Diffstat (limited to 'src/storage/storage.cc')
-rw-r--r-- | src/storage/storage.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/storage/storage.cc b/src/storage/storage.cc index 62f3699..8e2e461 100644 --- a/src/storage/storage.cc +++ b/src/storage/storage.cc @@ -17,6 +17,8 @@ Storage *Storage::get_lower() { return this->lower; } void Storage::resolve() { + if (this->lower) + this->lower->resolve(); if (this->wait_time == 0) { this->requester = IDLE; this->wait_time = delay; |