mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
fix QLIST usage for RAM list
Spotted while reviewing the migration thread patches. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
This commit is contained in:
parent
e92714c71a
commit
85d59fef9d
2 changed files with 2 additions and 2 deletions
|
@ -488,7 +488,7 @@ typedef struct RAMBlock {
|
|||
|
||||
typedef struct RAMList {
|
||||
uint8_t *phys_dirty;
|
||||
QLIST_HEAD(ram, RAMBlock) blocks;
|
||||
QLIST_HEAD(, RAMBlock) blocks;
|
||||
} RAMList;
|
||||
extern RAMList ram_list;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue