diff options
author | Aurelien Jarno <aurelien@aurel32.net> | 2009-12-19 20:28:23 +0100 |
---|---|---|
committer | Aurelien Jarno <aurelien@aurel32.net> | 2009-12-19 20:29:18 +0100 |
commit | 49995e17484a89bb35085275b06a250080a19e6c (patch) | |
tree | 46572ca22c75db40c0c355d1697cd237013f5746 /linux-user | |
parent | f9e69bd9cfe2247b1fb5dc56d3a28baf36ce8384 (diff) |
linux-user: use TARGET_ABI_FMT_lx to print abi_ulong types
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Diffstat (limited to 'linux-user')
-rw-r--r-- | linux-user/elfload.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |