diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2024-07-13 19:48:53 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2024-07-14 13:04:43 +0200 |
commit | b99da22eec9ff299141f51f94a5b6b88640d0b60 (patch) | |
tree | fc980d53f955b463d61d76b60a0296e0ca4a7653 | |
parent | 9a6a534f9648f673fb549aefed0838269994493a (diff) |
w
-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; |