From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5646 invoked by alias); 3 Sep 2005 00:45:32 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 5636 invoked by uid 22791); 3 Sep 2005 00:45:29 -0000 Received: from mx1.redhat.com (HELO mx1.redhat.com) (66.187.233.31) by sourceware.org (qpsmtpd/0.30-dev) with ESMTP; Sat, 03 Sep 2005 00:45:29 +0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11/8.12.11) with ESMTP id j830jRge007287 for ; Fri, 2 Sep 2005 20:45:27 -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 j830jMV03934 for ; Fri, 2 Sep 2005 20:45:22 -0400 Received: from localhost.localdomain (vpn50-99.rdu.redhat.com [172.16.50.99]) by pobox.corp.redhat.com (8.12.8/8.12.8) with ESMTP id j830jMHW030346 for ; Fri, 2 Sep 2005 20:45:22 -0400 Received: from ironwood.lan (ironwood.lan [192.168.64.8]) by localhost.localdomain (8.12.11/8.12.10) with ESMTP id j830jG33007268 for ; Fri, 2 Sep 2005 17:45:16 -0700 Date: Sat, 03 Sep 2005 00:45:00 -0000 From: Kevin Buettner To: gdb-patches@sources.redhat.com Subject: [commit] mn10300: gdb_byte-ize mn10300_frame_prev_register() Message-ID: <20050902174516.379fb07e@ironwood.lan> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-SW-Source: 2005-09/txt/msg00015.txt.bz2 I've just committed the change below. * mn10300-tdep.c (mn10300_frame_prev_register): Change type of ``bufferp'' from ``void *'' to ``gdb_byte *''. Index: mn10300-tdep.c =================================================================== RCS file: /cvs/src/src/gdb/mn10300-tdep.c,v retrieving revision 1.126 diff -u -p -r1.126 mn10300-tdep.c --- mn10300-tdep.c 3 Sep 2005 00:12:26 -0000 1.126 +++ mn10300-tdep.c 3 Sep 2005 00:38:49 -0000 @@ -779,7 +779,7 @@ mn10300_frame_prev_register (struct fram void **this_prologue_cache, int regnum, int *optimizedp, enum lval_type *lvalp, CORE_ADDR *addrp, - int *realnump, void *bufferp) + int *realnump, gdb_byte *bufferp) { struct trad_frame_cache *cache = mn10300_frame_unwind_cache (next_frame, this_prologue_cache);