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 | db272363c351cd299837256ec397cb6a2ebc71bc (patch) | |
tree | be82579100bc5fad564436cef131f64a18b1396c /hw/xen_blkif.h | |
parent | 741d4627139d779c4374ee9ac4b5d9abbc7da468 (diff) | |
download | qemu-db272363c351cd299837256ec397cb6a2ebc71bc.tar.gz qemu-db272363c351cd299837256ec397cb6a2ebc71bc.tar.bz2 qemu-db272363c351cd299837256ec397cb6a2ebc71bc.zip |
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; |