Commit 6dab28d5b5bfa67bef724efac0bc051a69ff1339
1 parent
ab19cb41
Fix vmmouse for 64bit guest, by Dan Kenigsberg.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3374 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
1 additions
and
1 deletions
hw/vmport.c
| @@ -52,7 +52,7 @@ static uint32_t vmport_ioport_read(void *opaque, uint32_t addr) | @@ -52,7 +52,7 @@ static uint32_t vmport_ioport_read(void *opaque, uint32_t addr) | ||
| 52 | { | 52 | { |
| 53 | VMPortState *s = opaque; | 53 | VMPortState *s = opaque; |
| 54 | unsigned char command; | 54 | unsigned char command; |
| 55 | - target_ulong eax; | 55 | + uint32_t eax; |
| 56 | 56 | ||
| 57 | eax = s->env->regs[R_EAX]; | 57 | eax = s->env->regs[R_EAX]; |
| 58 | if (eax != VMPORT_MAGIC) | 58 | if (eax != VMPORT_MAGIC) |