aboutsummaryrefslogtreecommitdiffstats
path: root/cpu-all.h
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2011-08-12 13:18:14 +0200
committerStefan Hajnoczi <stefanha@linux.vnet.ibm.com>2011-08-12 13:07:58 +0100
commit85d59fef9defc78790c8b6cee833d4a77c22a490 (patch)
tree89371106352e65a381f7a446e6f8b3f42952a58b /cpu-all.h
parente92714c71a2f50b8420126e952cadb653fa0ef93 (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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu-all.h b/cpu-all.h
index fa0205c28..f5c82cdeb 100644
--- a/cpu-all.h
+++ b/cpu-all.h
@@ -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;