kernel/vm: Put name argument first in VMCache::Init.

This seems to make more logical sense.
This commit is contained in:
Augustin Cavalier
2025-01-28 17:55:27 -05:00
parent 46aa69c2f6
commit 72162cc730
6 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -81,8 +81,8 @@ public:
VMCache();
virtual ~VMCache();
status_t Init(uint32 cacheType, uint32 allocationFlags,
const char* name);
status_t Init(const char* name, uint32 cacheType,
uint32 allocationFlags);
virtual void Delete();