This is the mail archive of the insight@sources.redhat.com mailing list for the Insight project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[patch] fix 64-bit addresses in memory wiindow


I checked this simple fix in.

-- 
Martin Hunt
GDB Engineer
Red Hat, Inc.

2002-09-19  Martin M. Hunt  <hunt@redhat.com>

	* library/memwin.itb (incr_addr): Fix 64-bit addresses.

===================================================================
RCS file: /cvs/src/src/gdb/gdbtk/library/memwin.itb,v
retrieving revision 1.19
diff -u -u -r1.19 memwin.itb
--- library/memwin.itb  1 Aug 2002 01:19:02 -0000       1.19
+++ library/memwin.itb  20 Sep 2002 06:02:44 -0000
@@ -555,7 +555,7 @@
   }
   $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
 }



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]