OSDN Git Service

2002-09-19 Martin M. Hunt <hunt@redhat.com>
authorMartin Hunt <hunt@redhat.com>
Fri, 20 Sep 2002 06:03:19 +0000 (06:03 +0000)
committerMartin Hunt <hunt@redhat.com>
Fri, 20 Sep 2002 06:03:19 +0000 (06:03 +0000)
* library/memwin.itb (incr_addr): Fix 64-bit addresses.

gdb/gdbtk/ChangeLog
gdb/gdbtk/library/memwin.itb

index 62d5200..31c30b2 100644 (file)
@@ -1,3 +1,7 @@
+2002-09-19  Martin M. Hunt  <hunt@redhat.com>
+
+       * library/memwin.itb (incr_addr): Fix 64-bit addresses.
+
 2002-09-18  Keith Seitz  <keiths@redhat.com>
 
        * library/console.itb (_build_win): Bind control-c and control-v
index 16b2c53..07c6f31 100644 (file)
@@ -555,7 +555,7 @@ body MemWin::incr_addr {num} {
   }
   $itk_component(table) config -bg $::Colors(textbg) -state normal
   $itk_interior.f.cntl clear
-  $itk_interior.f.cntl insert 0 [format "0x%x" $current_addr]
+  $itk_interior.f.cntl insert 0 $current_addr
   _update_address 1
 }