kernel/user_mutex: Fix another instance of addr_t.

Spotted by korli.
This commit is contained in:
Augustin Cavalier
2023-06-06 10:54:16 -04:00
parent 402b41562c
commit 9686d93151
+1 -1
View File
@@ -35,7 +35,7 @@ struct UserMutexHashDefinition {
typedef phys_addr_t KeyType;
typedef UserMutexEntry ValueType;
size_t HashKey(addr_t key) const
size_t HashKey(phys_addr_t key) const
{
return key >> 2;
}