From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 25453 invoked by alias); 21 Oct 2013 16:11:56 -0000 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 Received: (qmail 25438 invoked by uid 89); 21 Oct 2013 16:11:55 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.7 required=5.0 tests=AWL,BAYES_00,RP_MATCHES_RCVD,SPF_HELO_PASS,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 21 Oct 2013 16:11:54 +0000 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r9LFbaoH009737 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 21 Oct 2013 11:37:37 -0400 Received: from redhat.brq.redhat.com (unused-4-133.brq.redhat.com [10.34.4.133]) by int-mx09.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id r9LFbRIo025201; Mon, 21 Oct 2013 11:37:35 -0400 From: Ondrej Oprala To: gdb-patches@sourceware.org Cc: Tom Tromey Subject: [PATCH 06/18] poison "delete" Date: Mon, 21 Oct 2013 16:11:00 -0000 Message-Id: <1382369846-5817-7-git-send-email-ooprala@redhat.com> In-Reply-To: <1382369846-5817-1-git-send-email-ooprala@redhat.com> References: <1382369846-5817-1-git-send-email-ooprala@redhat.com> X-IsSubscribed: yes X-SW-Source: 2013-10/txt/msg00659.txt.bz2 From: Tom Tromey gdb/ChangeLog 2013-10-21 Tom Tromey * gdb/ui-file.h (delete_ptr): Renamed from delete. --- gdb/ui-file.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gdb/ui-file.h b/gdb/ui-file.h index ba0a908..16468e8 100644 --- a/gdb/ui-file.h +++ b/gdb/ui-file.h @@ -77,7 +77,7 @@ extern void set_ui_file_put (struct ui_file *stream, ui_file_put_ftype *put); typedef void (ui_file_delete_ftype) (struct ui_file * stream); extern void set_ui_file_data (struct ui_file *stream, void *data, - ui_file_delete_ftype *delete); + ui_file_delete_ftype *delete_ptr); typedef int (ui_file_fseek_ftype) (struct ui_file *stream, long offset, int whence); -- 1.8.3.1