From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 23492 invoked by alias); 11 Apr 2009 18:00:27 -0000 Received: (qmail 23288 invoked by uid 22791); 11 Apr 2009 18:00:21 -0000 X-SWARE-Spam-Status: No, hits=-1.4 required=5.0 tests=AWL,BAYES_00,SPF_SOFTFAIL X-Spam-Check-By: sourceware.org Received: from mtaout7.012.net.il (HELO mtaout7.012.net.il) (84.95.2.19) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Sat, 11 Apr 2009 18:00:15 +0000 Received: from conversion-daemon.i-mtaout7.012.net.il by i-mtaout7.012.net.il (HyperSendmail v2007.08) id <0KHY0070072RND00@i-mtaout7.012.net.il> for gdb-patches@sources.redhat.com; Sat, 11 Apr 2009 20:59:17 +0300 (IDT) Received: from HOME-C4E4A596F7 ([84.229.240.185]) by i-mtaout7.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0KHY000N37AS5V60@i-mtaout7.012.net.il> for gdb-patches@sources.redhat.com; Sat, 11 Apr 2009 20:59:17 +0300 (IDT) Date: Sat, 11 Apr 2009 18:00:00 -0000 From: Eli Zaretskii Subject: [commit] Fix prototype related breakage in go32-nat.c To: gdb-patches@sources.redhat.com Reply-to: Eli Zaretskii Message-id: <834owvoyvb.fsf@gnu.org> X-IsSubscribed: yes Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2009-04/txt/msg00212.txt.bz2 Didn't we agree at the time that the prototypes should be corrected as well? Committed. 2009-04-11 Eli Zaretskii * go32-nat.c (go32_attach, go32_detach:) Fix prototypes to be consistent with the change from 2009-03-17. Index: gdb/go32-nat.c =================================================================== RCS file: /cvs/src/src/gdb/go32-nat.c,v retrieving revision 1.67 diff -u -r1.67 go32-nat.c --- gdb/go32-nat.c 17 Mar 2009 19:28:08 -0000 1.67 +++ gdb/go32-nat.c 11 Apr 2009 17:55:06 -0000 @@ -167,8 +167,8 @@ static int prog_has_started = 0; static void go32_open (char *name, int from_tty); static void go32_close (int quitting); -static void go32_attach (char *args, int from_tty); -static void go32_detach (char *args, int from_tty); +static void go32_attach (struct target_ops *ops, char *args, int from_tty); +static void go32_detach (struct target_ops *ops, char *args, int from_tty); static void go32_resume (struct target_ops *ops, ptid_t ptid, int step, enum target_signal siggnal);