From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 32643 invoked by alias); 20 Sep 2002 06:06:01 -0000 Mailing-List: contact insight-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: insight-owner@sources.redhat.com Received: (qmail 32633 invoked from network); 20 Sep 2002 06:06:00 -0000 Received: from unknown (HELO mx1.redhat.com) (66.187.233.31) by sources.redhat.com with SMTP; 20 Sep 2002 06:06:00 -0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.11.6/8.11.6) with ESMTP id g8K5mci15026 for ; Fri, 20 Sep 2002 01:48:38 -0400 Received: from pobox.corp.redhat.com (pobox.corp.redhat.com [172.16.52.156]) by int-mx1.corp.redhat.com (8.11.6/8.11.6) with ESMTP id g8K65wh05272 for ; Fri, 20 Sep 2002 02:05:58 -0400 Received: from localhost.localdomain (IDENT:Dd9gVh5K/ihc1iufCzKiaTb/1OHSoQAE@romulus.sfbay.redhat.com [172.16.27.251]) by pobox.corp.redhat.com (8.11.6/8.11.6) with ESMTP id g8K65wf06809 for ; Fri, 20 Sep 2002 02:05:58 -0400 Content-Type: text/plain; charset="us-ascii" From: "Martin M. Hunt" Organization: Red Hat Inc To: insight@sources.redhat.com Subject: [patch] fix 64-bit addresses in memory wiindow Date: Thu, 19 Sep 2002 23:06:00 -0000 User-Agent: KMail/1.4.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-Id: <200209192304.50753.hunt@redhat.com> X-SW-Source: 2002-q3/txt/msg00177.txt.bz2 I checked this simple fix in. -- Martin Hunt GDB Engineer Red Hat, Inc. 2002-09-19 Martin M. Hunt * 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 }