]> Git Repo - qemu.git/commitdiff
Use TARGET_FMT_lx.
authoredgar_igl <edgar_igl@c046a42c-6fe2-441c-8c8c-71466251a162>
Fri, 14 Mar 2008 14:11:05 +0000 (14:11 +0000)
committeredgar_igl <edgar_igl@c046a42c-6fe2-441c-8c8c-71466251a162>
Fri, 14 Mar 2008 14:11:05 +0000 (14:11 +0000)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4061 c046a42c-6fe2-441c-8c8c-71466251a162

linux-user/mmap.c

index 6292826b436a0ae6885e9e02e19c8ef8dd92f50b..d459c61b290a224ab9a9ce6803ec24f1c6de9aae 100644 (file)
@@ -337,7 +337,7 @@ abi_long target_mmap(abi_ulong start, abi_ulong len, int prot,
     page_set_flags(start, start + len, prot | PAGE_VALID);
  the_end:
 #ifdef DEBUG_MMAP
-    printf("ret=0x%llx\n", start);
+    printf("ret=0x" TARGET_FMT_lx "\n", start);
     page_dump(stdout);
     printf("\n");
 #endif
@@ -432,4 +432,3 @@ int target_msync(abi_ulong start, abi_ulong len, int flags)
     start &= qemu_host_page_mask;
     return msync(g2h(start), end - start, flags);
 }
-
This page took 0.027344 seconds and 4 git commands to generate.