Chore: trim spaces

This commit is contained in:
2025-04-15 19:51:00 +08:00
parent 75edf55dd3
commit 8ea82f927b
3 changed files with 3 additions and 3 deletions

View File

@@ -154,7 +154,7 @@ uint64_t _allocate_page(size_t req, int idx, uint64_t l, uint64_t r)
ret = _allocate_page(req, LIDX, l, m);
if (ret == MMAN_NO_PAGE && RCH->size >= req)
ret = _allocate_page(req, RIDX, m, r);
_pull(idx, sz);
return ret;
}