From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 13943 invoked by alias); 14 Mar 2012 13:16:13 -0000 Received: (qmail 13934 invoked by uid 22791); 14 Mar 2012 13:16:12 -0000 X-SWARE-Spam-Status: No, hits=-1.5 required=5.0 tests=AWL,BAYES_00,TW_BT,TW_DB X-Spam-Check-By: sourceware.org Received: from outdoor.onevision.de (HELO outdoor.onevision.de) (212.77.172.51) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 14 Mar 2012 13:15:59 +0000 Received: from sanders.onevision.de (moonrace [212.77.172.62]) by outdoor.onevision.de (8.14.3/8.13.7/ROSCH/DDB) with ESMTP id q2EDFq7L004766 for ; Wed, 14 Mar 2012 14:15:57 +0100 Received: from [192.168.5.32] ([192.168.5.32]) by sanders.onevision.de (Lotus Domino Release 8.5.1FP3) with ESMTP id 2012031414154739-114768 ; Wed, 14 Mar 2012 14:15:47 +0100 Message-ID: <4F609A03.3040701@onevision.com> Date: Wed, 14 Mar 2012 13:16:00 -0000 From: Roland Schwingel User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:10.0.2) Gecko/20120216 Thunderbird/10.0.2 MIME-Version: 1.0 To: insight@sourceware.org Subject: Patch: Adjust gdbtk-bp.c to recent change Content-Type: multipart/mixed; boundary="------------030502010301080009000408" Mailing-List: contact insight-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: insight-owner@sourceware.org X-SW-Source: 2012-q1/txt/msg00018.txt.bz2 This is a multi-part message in MIME format. --------------030502010301080009000408 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-length: 360 Hi... Yesterday the function create_breakpoint() was extended by a new parameter. This breaks compilation of gdbtk. Attached you will find a small patch that fixes this. ChangeLog: 2012-03-14 Roland Schwingel * generic/gdbtk-bp.c (gdb_set_bp): Adjust parameters of create_breakpoint() to match recent change. Roland --------------030502010301080009000408 Content-Transfer-Encoding: 7bit Content-Type: text/plain; name="gdbtk-bp.c.patch" Content-Disposition: attachment; filename="gdbtk-bp.c.patch" Content-length: 303 --- gdbtk-bp.c_orig 2012-03-14 13:34:46.406456000 +0100 +++ gdbtk-bp.c 2012-03-14 13:36:49.096271700 +0100 @@ -543,7 +543,7 @@ (pending ? AUTO_BOOLEAN_TRUE : AUTO_BOOLEAN_FALSE), &bkpt_breakpoint_ops, 0 /* from_tty */, - enabled, 0); + enabled, 0, 0); } if (e.reason < 0) --------------030502010301080009000408--