Fix MemoryInfo field order

This commit is contained in:
averne 2022-01-29 13:30:38 +01:00 committed by fincs
parent 6d8d9fd2fc
commit 3d9e1a9c7b

View File

@ -91,8 +91,8 @@ typedef struct {
u32 type; ///< Memory type (see lower 8 bits of \ref MemoryState).
u32 attr; ///< Memory attributes (see \ref MemoryAttribute).
u32 perm; ///< Memory permissions (see \ref Permission).
u32 device_refcount; ///< Device reference count.
u32 ipc_refcount; ///< IPC reference count.
u32 device_refcount; ///< Device reference count.
u32 padding; ///< Padding.
} MemoryInfo;