From b55266b5a235afe7b0aa946e2a6d49010f35e71c Mon Sep 17 00:00:00 2001 From: blueswir1 Date: Sat, 20 Sep 2008 08:07:15 +0000 Subject: Suppress gcc 4.x -Wpointer-sign (included in -Wall) warnings git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5275 c046a42c-6fe2-441c-8c8c-71466251a162 --- hw/mips_r4k.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'hw/mips_r4k.c') diff --git a/hw/mips_r4k.c b/hw/mips_r4k.c index 8b3f4e93a..1499af786 100644 --- a/hw/mips_r4k.c +++ b/hw/mips_r4k.c @@ -83,7 +83,8 @@ static void load_kernel (CPUState *env) ram_addr_t initrd_offset; kernel_size = load_elf(loaderparams.kernel_filename, VIRT_TO_PHYS_ADDEND, - &entry, &kernel_low, &kernel_high); + (uint64_t *)&entry, (uint64_t *)&kernel_low, + (uint64_t *)&kernel_high); if (kernel_size >= 0) { if ((entry & ~0x7fffffffULL) == 0x80000000) entry = (int32_t)entry; @@ -120,15 +121,15 @@ static void load_kernel (CPUState *env) /* Store command line. */ if (initrd_size > 0) { int ret; - ret = sprintf(phys_ram_base + (16 << 20) - 256, + ret = sprintf((char *)(phys_ram_base + (16 << 20) - 256), "rd_start=0x" TARGET_FMT_lx " rd_size=%li ", PHYS_TO_VIRT((uint32_t)initrd_offset), initrd_size); - strcpy (phys_ram_base + (16 << 20) - 256 + ret, + strcpy ((char *)(phys_ram_base + (16 << 20) - 256 + ret), loaderparams.kernel_cmdline); } else { - strcpy (phys_ram_base + (16 << 20) - 256, + strcpy ((char *)(phys_ram_base + (16 << 20) - 256), loaderparams.kernel_cmdline); } -- cgit v1.2.3-65-gdbad