* windows-nat.c (windows_xfer_memory): Fix debug-output
authorKai Tietz <kai.tietz@onevision.com>
Tue, 19 Feb 2013 15:46:32 +0000 (15:46 +0000)
committerKai Tietz <kai.tietz@onevision.com>
Tue, 19 Feb 2013 15:46:32 +0000 (15:46 +0000)
for LLP64.

gdb/ChangeLog
gdb/windows-nat.c

index c23e318..e947b30 100644 (file)
@@ -1,3 +1,8 @@
+2013-02-19  Kai Tietz  <ktietz@redhat.com>
+
+       * windows-nat.c (windows_xfer_memory): Fix debug-output
+       for LLP64.
+
 2013-02-19  Lei Liu  <lei.liu2@windriver.com>
 
        * mips-linux-nat.c (mips64_linux_regsets_store_registers):
index 2fe50b1..a69d561 100644 (file)
@@ -2313,8 +2313,8 @@ windows_xfer_memory (CORE_ADDR memaddr, gdb_byte *our, int len,
   SIZE_T done = 0;
   if (write)
     {
-      DEBUG_MEM (("gdb: write target memory, %d bytes at 0x%08lx\n",
-                 len, (DWORD) (uintptr_t) memaddr));
+      DEBUG_MEM (("gdb: write target memory, %d bytes at %s\n",
+                 len, core_addr_to_string (memaddr)));
       if (!WriteProcessMemory (current_process_handle,
                               (LPVOID) (uintptr_t) memaddr, our,
                               len, &done))
@@ -2324,8 +2324,8 @@ windows_xfer_memory (CORE_ADDR memaddr, gdb_byte *our, int len,
     }
   else
     {
-      DEBUG_MEM (("gdb: read target memory, %d bytes at 0x%08lx\n",
-                 len, (DWORD) (uintptr_t) memaddr));
+      DEBUG_MEM (("gdb: read target memory, %d bytes at %s\n",
+                 len, core_addr_to_string (memaddr)));
       if (!ReadProcessMemory (current_process_handle,
                              (LPCVOID) (uintptr_t) memaddr, our,
                              len, &done))