diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2009-04-25 08:00:11 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2009-04-25 08:00:11 +0000 |
commit | 6fcfeff9face289aa69a037e73a76c1a7b8c7411 (patch) | |
tree | be82579100bc5fad564436cef131f64a18b1396c /hw/xen_blkif.h | |
parent | c433bedf76290833cb563aae4100ec7f668a63e9 (diff) |
Fix compilation when x86_64 is defined
Diffstat (limited to 'hw/xen_blkif.h')
-rw-r--r-- | hw/xen_blkif.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/xen_blkif.h b/hw/xen_blkif.h index 254a5fd50c..738b8fe53b 100644 --- a/hw/xen_blkif.h +++ b/hw/xen_blkif.h @@ -59,8 +59,8 @@ DEFINE_RING_TYPES(blkif_x86_64, struct blkif_x86_64_request, struct blkif_x86_64 union blkif_back_rings { blkif_back_ring_t native; blkif_common_back_ring_t common; - blkif_x86_32_back_ring_t x86_32; - blkif_x86_64_back_ring_t x86_64; + blkif_x86_32_back_ring_t x86_32_part; + blkif_x86_64_back_ring_t x86_64_part; }; typedef union blkif_back_rings blkif_back_rings_t; |