From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 2504 invoked by alias); 6 Dec 2002 16:59:15 -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 2489 invoked from network); 6 Dec 2002 16:59:14 -0000 Received: from unknown (HELO mx1.redhat.com) (66.187.233.31) by sources.redhat.com with SMTP; 6 Dec 2002 16:59:14 -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 gB6GY0P05362 for ; Fri, 6 Dec 2002 11:34:00 -0500 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 gB6GxED28725 for ; Fri, 6 Dec 2002 11:59:14 -0500 Received: from localhost.redhat.com (romulus-int.sfbay.redhat.com [172.16.27.46]) by pobox.corp.redhat.com (8.11.6/8.11.6) with ESMTP id gB6GxD928414 for ; Fri, 6 Dec 2002 11:59:13 -0500 Received: by localhost.redhat.com (Postfix, from userid 469) id C7EF8FF79; Fri, 6 Dec 2002 11:54:53 -0500 (EST) From: Elena Zannoni MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15856.54877.23515.952495@localhost.redhat.com> Date: Fri, 06 Dec 2002 09:05:00 -0000 To: gdb-patches@sources.redhat.com Subject: [PATCH] fix some warnings X-SW-Source: 2002-12/txt/msg00229.txt.bz2 Fix some -Werror warnings. Committed as obvious. Elena 2002-12-06 Elena Zannoni * ia64-linux-nat.c: Include gdb_string.h. * alpha-nat.c: Ditto. * ia64-linux-nat.c: Ditto. Index: ppc-linux-nat.c =================================================================== RCS file: /cvs/uberbaum/gdb/ppc-linux-nat.c,v retrieving revision 1.18 diff -u -p -r1.18 ppc-linux-nat.c --- ppc-linux-nat.c 30 Jul 2002 19:03:49 -0000 1.18 +++ ppc-linux-nat.c 6 Dec 2002 16:50:15 -0000 @@ -20,6 +20,7 @@ Boston, MA 02111-1307, USA. */ #include "defs.h" +#include "gdb_string.h" #include "frame.h" #include "inferior.h" #include "gdbcore.h" Index: alpha-nat.c =================================================================== RCS file: /cvs/uberbaum/gdb/alpha-nat.c,v retrieving revision 1.13 diff -u -p -r1.13 alpha-nat.c --- alpha-nat.c 14 Nov 2002 20:37:28 -0000 1.13 +++ alpha-nat.c 6 Dec 2002 16:50:15 -0000 @@ -20,6 +20,7 @@ Boston, MA 02111-1307, USA. */ #include "defs.h" +#include "gdb_string.h" #include "inferior.h" #include "gdbcore.h" #include "target.h" Index: ia64-linux-nat.c =================================================================== RCS file: /cvs/uberbaum/gdb/ia64-linux-nat.c,v retrieving revision 1.14 diff -u -p -r1.14 ia64-linux-nat.c --- ia64-linux-nat.c 14 Nov 2002 20:37:28 -0000 1.14 +++ ia64-linux-nat.c 6 Dec 2002 16:50:15 -0000 @@ -21,6 +21,7 @@ Boston, MA 02111-1307, USA. */ #include "defs.h" +#include "gdb_string.h" #include "inferior.h" #include "target.h" #include "gdbcore.h"