From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 14172 invoked by alias); 16 Mar 2009 19:07:29 -0000 Received: (qmail 14164 invoked by uid 22791); 16 Mar 2009 19:07:29 -0000 X-SWARE-Spam-Status: No, hits=-2.4 required=5.0 tests=AWL,BAYES_00 X-Spam-Check-By: sourceware.org Received: from rock.gnat.com (HELO rock.gnat.com) (205.232.38.15) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Mon, 16 Mar 2009 19:07:23 +0000 Received: from localhost (localhost.localdomain [127.0.0.1]) by filtered-rock.gnat.com (Postfix) with ESMTP id AB6052BAB98 for ; Mon, 16 Mar 2009 15:07:21 -0400 (EDT) Received: from rock.gnat.com ([127.0.0.1]) by localhost (rock.gnat.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id EYBNjR-HyIeC for ; Mon, 16 Mar 2009 15:07:21 -0400 (EDT) Received: from joel.gnat.com (localhost.localdomain [127.0.0.1]) by rock.gnat.com (Postfix) with ESMTP id 7BFF72BAB7C for ; Mon, 16 Mar 2009 15:07:21 -0400 (EDT) Received: by joel.gnat.com (Postfix, from userid 1000) id 4DC1FF5C40; Mon, 16 Mar 2009 12:07:20 -0700 (PDT) Date: Mon, 16 Mar 2009 19:20:00 -0000 From: Joel Brobecker To: gdb-patches@sourceware.org Subject: [commit/obvious] Add missing ops parameter in go32_create_inferior Message-ID: <20090316190720.GF9576@adacore.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="bGR76rFJjkSxVeRa" Content-Disposition: inline User-Agent: Mutt/1.5.18 (2008-05-17) 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-03/txt/msg00272.txt.bz2 --bGR76rFJjkSxVeRa Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-length: 356 I feel like I'm earning lots of brownie points, right now :-) I found by accident that one function had its prototype changed, but not the actual declaration... 2009-03-16 Joel Brobecker * go32-nat.c (go32_create_inferior): Add missing ops parameter. Checked in as obvious. I hope the file builds again, now. -- Joel --bGR76rFJjkSxVeRa Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="go32-nat.c.diff" Content-length: 575 Index: go32-nat.c =================================================================== RCS file: /cvs/src/src/gdb/go32-nat.c,v retrieving revision 1.65 diff -u -p -r1.65 go32-nat.c --- go32-nat.c 23 Feb 2009 00:03:49 -0000 1.65 +++ go32-nat.c 16 Mar 2009 18:56:20 -0000 @@ -591,7 +591,8 @@ go32_kill_inferior (void) } static void -go32_create_inferior (char *exec_file, char *args, char **env, int from_tty) +go32_create_inferior (struct target_ops *ops, char *exec_file, + char *args, char **env, int from_tty) { extern char **environ; jmp_buf start_state; --bGR76rFJjkSxVeRa--