* [patch] fix compiler warning for ia64
@ 2008-09-05 14:24 Jes Sorensen
2008-09-07 6:29 ` Avi Kivity
0 siblings, 1 reply; 2+ messages in thread
From: Jes Sorensen @ 2008-09-05 14:24 UTC (permalink / raw)
To: Avi Kivity, kvm, kvm-ia64
[-- Attachment #1: Type: text/plain, Size: 92 bytes --]
Hi,
Small patch, fixing the types to avoid some unncessary warnings on ia64.
Cheers,
Jes
[-- Attachment #2: 0103-qemu-ia64-signness.patch --]
[-- Type: text/plain, Size: 981 bytes --]
Fixed types to match rest of qemu to eliminate silly compiler warning.
Signed-off-by: Jes Sorensen <jes@sgi.com>
---
qemu/hw/ipf.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
Index: kvm-userspace.git/qemu/hw/ipf.c
===================================================================
--- kvm-userspace.git.orig/qemu/hw/ipf.c
+++ kvm-userspace.git/qemu/hw/ipf.c
@@ -1,5 +1,5 @@
/*
- * Itanium Platforma Emulator derived from QEMU PC System Emulator
+ * Itanium Platform Emulator derived from QEMU PC System Emulator
*
* Copyright (c) 2003-2004 Fabrice Bellard
*
@@ -456,9 +456,9 @@
int r;
unsigned long image_size;
char *image = NULL;
- char *fw_image_start;
+ uint8_t *fw_image_start;
ram_addr_t fw_offset = qemu_ram_alloc(GFW_SIZE);
- char *fw_start = phys_ram_base + fw_offset;
+ uint8_t *fw_start = phys_ram_base + fw_offset;
snprintf(buf, sizeof(buf), "%s/%s", bios_dir, FW_FILENAME);
image = read_image(buf, &image_size );
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2008-09-07 6:29 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-09-05 14:24 [patch] fix compiler warning for ia64 Jes Sorensen
2008-09-07 6:29 ` Avi Kivity
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox