diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-11-11 17:22:48 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-11-11 17:22:48 +0000 |
commit | 8a4ed7ef483bd6cc0390ad2cb852cb9d278ebec8 (patch) | |
tree | 1bf9e14277a87dfd5b5c19eebe57171e0cb0df3f /linux-user/main.c | |
parent | 0fe5ea89cc108ea0ff5cbc115bd1143196e248ba (diff) | |
download | qemu-8a4ed7ef483bd6cc0390ad2cb852cb9d278ebec8.zip |
printf format fixes
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3595 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'linux-user/main.c')
-rw-r--r-- | linux-user/main.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/linux-user/main.c b/linux-user/main.c index 4b53b908f1..eb28991ce2 100644 --- a/linux-user/main.c +++ b/linux-user/main.c @@ -2043,17 +2043,17 @@ int main(int argc, char **argv) if (loglevel) { page_dump(logfile); - fprintf(logfile, "start_brk 0x" TARGET_FMT_lx "\n", info->start_brk); - fprintf(logfile, "end_code 0x" TARGET_FMT_lx "\n", info->end_code); - fprintf(logfile, "start_code 0x" TARGET_FMT_lx "\n", + fprintf(logfile, "start_brk 0x" TARGET_ABI_FMT_lx "\n", info->start_brk); + fprintf(logfile, "end_code 0x" TARGET_ABI_FMT_lx "\n", info->end_code); + fprintf(logfile, "start_code 0x" TARGET_ABI_FMT_lx "\n", info->start_code); - fprintf(logfile, "start_data 0x" TARGET_FMT_lx "\n", + fprintf(logfile, "start_data 0x" TARGET_ABI_FMT_lx "\n", info->start_data); - fprintf(logfile, "end_data 0x" TARGET_FMT_lx "\n", info->end_data); - fprintf(logfile, "start_stack 0x" TARGET_FMT_lx "\n", + fprintf(logfile, "end_data 0x" TARGET_ABI_FMT_lx "\n", info->end_data); + fprintf(logfile, "start_stack 0x" TARGET_ABI_FMT_lx "\n", info->start_stack); - fprintf(logfile, "brk 0x" TARGET_FMT_lx "\n", info->brk); - fprintf(logfile, "entry 0x" TARGET_FMT_lx "\n", info->entry); + fprintf(logfile, "brk 0x" TARGET_ABI_FMT_lx "\n", info->brk); + fprintf(logfile, "entry 0x" TARGET_ABI_FMT_lx "\n", info->entry); } target_set_brk(info->brk); |