kernel/vm: Commit missed change to VMVnodeCache.

This commit is contained in:
Augustin Cavalier 2025-01-28 18:47:04 -05:00
parent 72162cc730
commit 6db0402021

View File

@ -20,7 +20,7 @@
status_t
VMVnodeCache::Init(struct vnode* vnode, uint32 allocationFlags)
{
status_t error = VMCache::Init(CACHE_TYPE_VNODE, allocationFlags, "VMVnodeCache");
status_t error = VMCache::Init("VMVnodeCache", CACHE_TYPE_VNODE, allocationFlags);
if (error != B_OK)
return error;