aboutsummaryrefslogtreecommitdiffstats
path: root/exec.c
diff options
context:
space:
mode:
authorStefan Weil <weil@mail.berlios.de>2011-03-26 21:06:56 +0100
committerAurelien Jarno <aurelien@aurel32.net>2011-04-12 21:51:50 +0200
commit71d2b725e1f38162872b198992a61fa460978d77 (patch)
treefa544595f75830b390b0d1fa75250d3abfa35c4b /exec.c
parent3bad98147f84f2606afe2afb9d80ea15d3e1c39f (diff)
exec: Remove a type cast which is no longer needed
All other type casts in calls of cpu_physical_memory_write are used by hardware emulations and will be fixed by separate patches. Cc: Blue Swirl <blauwirbel@gmail.com> Signed-off-by: Stefan Weil <weil@mail.berlios.de> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Diffstat (limited to 'exec.c')
-rw-r--r--exec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/exec.c b/exec.c
index 983c0db3f..e8f1eeb75 100644
--- a/exec.c
+++ b/exec.c
@@ -4253,7 +4253,7 @@ void stw_phys(target_phys_addr_t addr, uint32_t val)
void stq_phys(target_phys_addr_t addr, uint64_t val)
{
val = tswap64(val);
- cpu_physical_memory_write(addr, (const uint8_t *)&val, 8);
+ cpu_physical_memory_write(addr, &val, 8);
}
/* virtual memory access for debug (includes writing to ROM) */