From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 17636 invoked by alias); 21 Feb 2005 14:38:18 -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 17375 invoked from network); 21 Feb 2005 14:38:00 -0000 Received: from unknown (HELO iris1.csv.ica.uni-stuttgart.de) (129.69.118.2) by sourceware.org with SMTP; 21 Feb 2005 14:38:00 -0000 Received: from rembrandt.csv.ica.uni-stuttgart.de ([129.69.118.42]) by iris1.csv.ica.uni-stuttgart.de with esmtp id 1D3EhE-0007Sl-00 for ; Mon, 21 Feb 2005 15:38:00 +0100 Received: from ica2_ts by rembrandt.csv.ica.uni-stuttgart.de with local (Exim 3.35 #1 (Debian)) id 1D3EhE-0008Jf-00 for ; Mon, 21 Feb 2005 15:38:00 +0100 Date: Mon, 21 Feb 2005 18:10:00 -0000 To: gdb-patches@sources.redhat.com Subject: [PATCH] Fix typo in infptrace.c Message-ID: <20050221143800.GV1757@rembrandt.csv.ica.uni-stuttgart.de> Mail-Followup-To: db-patches@sources.redhat.com, seufer@csv.ica.uni-stuttgart.de Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.6+20040907i From: Thiemo Seufer X-SW-Source: 2005-02/txt/msg00224.txt.bz2 Hello All, this patch fixes a build failure (on mips-linux) caused by a simple typo. Thiemo 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);