diff --git a/deps/ox/src/ox/fs/ptrarith/nodebuffer.hpp b/deps/ox/src/ox/fs/ptrarith/nodebuffer.hpp index bb7eb9c9..92989249 100644 --- a/deps/ox/src/ox/fs/ptrarith/nodebuffer.hpp +++ b/deps/ox/src/ox/fs/ptrarith/nodebuffer.hpp @@ -25,7 +25,7 @@ class OX_PACKED NodeBuffer { LittleEndian firstItem = 0; }; - using ItemPtr = Ptr; + using ItemPtr = Ptr; class Iterator { private: @@ -268,7 +268,7 @@ template Result::ItemPtr> NodeBuffer::malloc(std::size_t size) noexcept { const auto sz = static_cast(size); oxTracef("ox::ptrarith::NodeBuffer::malloc", "Size: {}", sz); - size_t fullSize = static_cast(sz + sizeof(Item)); + size_t fullSize = static_cast(sz + sizeof(Item)); if (m_header.size - m_header.bytesUsed >= fullSize) { auto last = lastItem(); size_t addr;