vm_manager: Correct ordering of last two struct members of MemoryInfo

These should be swapped.
master
Lioncash 2018-12-12 15:42:43 +07:00
parent eb5f3f67f6
commit b1b855c5d9
1 changed files with 2 additions and 2 deletions

@ -159,8 +159,8 @@ struct MemoryInfo {
u32 state; u32 state;
u32 attributes; u32 attributes;
u32 permission; u32 permission;
u32 device_refcount; u32 ipc_ref_count;
u32 ipc_refcount; u32 device_ref_count;
}; };
static_assert(sizeof(MemoryInfo) == 0x28, "MemoryInfo has incorrect size."); static_assert(sizeof(MemoryInfo) == 0x28, "MemoryInfo has incorrect size.");