From: Aurelien Jarno Date: Sat, 19 Dec 2009 19:28:23 +0000 (+0100) Subject: linux-user: use TARGET_ABI_FMT_lx to print abi_ulong types X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=49995e17484a89bb35085275b06a250080a19e6c;p=qemu.git linux-user: use TARGET_ABI_FMT_lx to print abi_ulong types Signed-off-by: Aurelien Jarno --- diff --git a/linux-user/elfload.c b/linux-user/elfload.c index f47ec1e408..46fa51b2a8 100644 --- a/linux-user/elfload.c +++ b/linux-user/elfload.c @@ -2589,7 +2589,7 @@ static int elf_core_dump(int signr, const CPUState *env) */ error = copy_from_user(page, addr, sizeof (page)); if (error != 0) { - (void) fprintf(stderr, "unable to dump " TARGET_FMT_lx "\n", + (void) fprintf(stderr, "unable to dump " TARGET_ABI_FMT_lx "\n", addr); errno = -error; goto out;