diff options
-rw-r--r-- | src/handle-page.inl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/handle-page.inl b/src/handle-page.inl index dbf8dbcc..5eae88de 100644 --- a/src/handle-page.inl +++ b/src/handle-page.inl @@ -77,7 +77,7 @@ void Page<Obj, PageSize>::deallocate(Handle<Obj, PageSize> obj) auto& item = storage[index]; auto ctr = item.handle.counter++; if (ctr == (uint32_t)-1) [[unlikely]] - fm_debug("counter %s overflowed", FM_PRETTY_FUNCTION); + fm_debug("counter overflowed: %s", FM_PRETTY_FUNCTION); fm_assert(obj.counter == ctr); item.next = first_free; first_free = obj.index; |