From: Juan Quintela Date: Fri, 3 Dec 2010 00:54:21 +0000 (+0100) Subject: mac_nvram: size is a size, no need to be a target dependent type X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=8a11f43bd5d42462c7d6a9321cefa59e78c69d51;p=qemu.git mac_nvram: size is a size, no need to be a target dependent type Signed-off-by: Juan Quintela --- diff --git a/hw/mac_nvram.c b/hw/mac_nvram.c index c2a2fc21e4..64f0192b22 100644 --- a/hw/mac_nvram.c +++ b/hw/mac_nvram.c @@ -38,7 +38,7 @@ #endif struct MacIONVRAMState { - target_phys_addr_t size; + uint32_t size; int mem_index; unsigned int it_shift; uint8_t *data;