From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28509 invoked by alias); 22 Aug 2011 20:27:44 -0000 Received: (qmail 28500 invoked by uid 22791); 22 Aug 2011 20:27:43 -0000 X-SWARE-Spam-Status: No, hits=-2.3 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED,DKIM_VALID,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: sourceware.org Received: from mail-bw0-f41.google.com (HELO mail-bw0-f41.google.com) (209.85.214.41) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Mon, 22 Aug 2011 20:27:29 +0000 Received: by bkbzt4 with SMTP id zt4so4646865bkb.0 for ; Mon, 22 Aug 2011 13:27:28 -0700 (PDT) Received: by 10.204.141.12 with SMTP id k12mr1164925bku.22.1314044848558; Mon, 22 Aug 2011 13:27:28 -0700 (PDT) MIME-Version: 1.0 Received: by 10.204.42.21 with HTTP; Mon, 22 Aug 2011 13:19:25 -0700 (PDT) From: Josh Matthews Date: Mon, 22 Aug 2011 20:27:00 -0000 Message-ID: Subject: [PATCH] Fix darwin build error To: gdb-patches@sourceware.org Content-Type: text/plain; charset=ISO-8859-1 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: 2011-08/txt/msg00413.txt.bz2 I hope this is the right way to do this. GDB currently doesn't build on darwin, and this patch makes it do so. gdb/ 2011-08-22 Josh Matthews Fix build error in darwin port. --- a/gdb/darwin-nat-info.c +++ b/gdb/darwin-nat-info.c @@ -620,6 +620,7 @@ darwin_debug_regions_recurse (task_t task) kern_return_t kret; int ret; struct cleanup *table_chain; + struct ui_out* uiout = current_uiout; table_chain = make_cleanup_ui_out_table_begin_end (uiout, 9, -1, "regions");