From: Stefan Weil Date: Mon, 20 Sep 2010 20:18:00 +0000 (+0200) Subject: mips_fulong2e: Fix format strings X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=1ed1139dc4772d0cc692a21fefb2ad598932d2be;p=qemu.git mips_fulong2e: Fix format strings Fix two compiler warnings (when format attribute is applied) and one error (missing %) in format strings. Cc: Aurelien Jarno Cc: Blue Swirl Signed-off-by: Stefan Weil Signed-off-by: Blue Swirl --- diff --git a/hw/mips_fulong2e.c b/hw/mips_fulong2e.c index ac82067acb..61ca9c4209 100644 --- a/hw/mips_fulong2e.c +++ b/hw/mips_fulong2e.c @@ -141,13 +141,13 @@ static int64_t load_kernel (CPUState *env) prom_size = ENVP_NB_ENTRIES * (sizeof(int32_t) + ENVP_ENTRY_SIZE); prom_buf = qemu_malloc(prom_size); - prom_set(prom_buf, index++, loaderparams.kernel_filename); + prom_set(prom_buf, index++, "%s", loaderparams.kernel_filename); if (initrd_size > 0) { - prom_set(prom_buf, index++, "rd_start=0x" PRIx64 " rd_size=%li %s", + prom_set(prom_buf, index++, "rd_start=0x%" PRIx64 " rd_size=%li %s", cpu_mips_phys_to_kseg0(NULL, initrd_offset), initrd_size, loaderparams.kernel_cmdline); } else { - prom_set(prom_buf, index++, loaderparams.kernel_cmdline); + prom_set(prom_buf, index++, "%s", loaderparams.kernel_cmdline); } /* Setup minimum environment variables */