diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2011-08-12 13:18:14 +0200 |
---|---|---|
committer | Stefan Hajnoczi <stefanha@linux.vnet.ibm.com> | 2011-08-12 13:07:58 +0100 |
commit | 85d59fef9defc78790c8b6cee833d4a77c22a490 (patch) | |
tree | 89371106352e65a381f7a446e6f8b3f42952a58b /cpu-all.h | |
parent | e92714c71a2f50b8420126e952cadb653fa0ef93 (diff) |
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>
Diffstat (limited to 'cpu-all.h')
-rw-r--r-- | cpu-all.h | 2 |
1 files changed, 1 insertions, 1 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; |