From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 9091 invoked by alias); 21 Feb 2005 17:23:20 -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 9001 invoked from network); 21 Feb 2005 17:23:15 -0000 Received: from unknown (HELO mx1.redhat.com) (66.187.233.31) by sourceware.org with SMTP; 21 Feb 2005 17:23:15 -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 j1LHN9om013386 for ; Mon, 21 Feb 2005 12:23:15 -0500 Received: from localhost.redhat.com (vpn50-48.rdu.redhat.com [172.16.50.48]) by int-mx1.corp.redhat.com (8.11.6/8.11.6) with ESMTP id j1LHN9K30291; Mon, 21 Feb 2005 12:23:09 -0500 Received: from [127.0.0.1] (localhost.localdomain [127.0.0.1]) by localhost.redhat.com (Postfix) with ESMTP id 736DA7D79; Mon, 21 Feb 2005 12:20:20 -0500 (EST) Message-ID: <421A1853.5020601@gnu.org> Date: Mon, 21 Feb 2005 19:23:00 -0000 From: Andrew Cagney User-Agent: Mozilla Thunderbird 0.8 (X11/20041020) MIME-Version: 1.0 To: Thiemo Seufer Cc: gdb-patches@sources.redhat.com Subject: Re: [PATCH] Fix typo in infptrace.c References: <20050221143800.GV1757@rembrandt.csv.ica.uni-stuttgart.de> In-Reply-To: <20050221143800.GV1757@rembrandt.csv.ica.uni-stuttgart.de> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2005-02/txt/msg00226.txt.bz2 Thiemo Seufer wrote: > Hello All, > > this patch fixes a build failure (on mips-linux) caused by a simple > typo. I've checked this in, thanks! Andrew > 2005-02-21 Thiemo Seufer > > * infptrace.c (store_register): Fix typo. > > > Index: gdb/infptrace.c > =================================================================== > RCS file: /cvs/src/src/gdb/infptrace.c,v > retrieving revision 1.53 > diff -u -p -r1.53 infptrace.c > --- gdb/infptrace.c 15 Feb 2005 15:49:11 -0000 1.53 > +++ gdb/infptrace.c 21 Feb 2005 14:17:27 -0000 > @@ -288,7 +288,7 @@ store_register (int regnum) > errno = 0; > ptrace (PT_WRITE_U, tid, (PTRACE_TYPE_ARG3) addr, buf[i]); > if (errno != 0) > - error (_("Couldn't write register %s (#%d): %s.")e, REGISTER_NAME (regnum), > + error (_("Couldn't write register %s (#%d): %s."), REGISTER_NAME (regnum), > regnum, safe_strerror (errno)); > > addr += sizeof (PTRACE_TYPE_RET); >