aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2005-04-24 18:02:38 +0000
committerbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2005-04-24 18:02:38 +0000
commite04f40b5aaded924d4f751d54762ffb6e6ab2e0f (patch)
treec0a9192815e95d999e0d7f8a8f5caf1d0422a40c
parentdff293e751c7670dfc7a8fcc9175446c311f3ed9 (diff)
compatibility fix with kqemu-x86_64
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1392 c046a42c-6fe2-441c-8c8c-71466251a162
-rw-r--r--exec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/exec.c b/exec.c
index f923043763..08914aecde 100644
--- a/exec.c
+++ b/exec.c
@@ -80,7 +80,7 @@ typedef struct PageDesc {
typedef struct PhysPageDesc {
/* offset in host memory of the page + io_index in the low 12 bits */
- unsigned long phys_offset;
+ uint32_t phys_offset;
} PhysPageDesc;
typedef struct VirtPageDesc {