From patchwork Tue Dec 2 22:25:01 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Simon Marchi X-Patchwork-Id: 4041 Received: (qmail 3761 invoked by alias); 2 Dec 2014 22:25:11 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 3750 invoked by uid 89); 2 Dec 2014 22:25:11 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.0 required=5.0 tests=AWL, BAYES_00, SPF_PASS autolearn=ham version=3.3.2 X-HELO: usevmg21.ericsson.net Received: from usevmg21.ericsson.net (HELO usevmg21.ericsson.net) (198.24.6.65) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-SHA encrypted) ESMTPS; Tue, 02 Dec 2014 22:25:10 +0000 Received: from EUSAAHC002.ericsson.se (Unknown_Domain [147.117.188.78]) by usevmg21.ericsson.net (Symantec Mail Security) with SMTP id 7F.97.25146.810ED745; Tue, 2 Dec 2014 16:51:52 +0100 (CET) Received: from simark-hp.mo.ca.am.ericsson.se (147.117.188.8) by smtps-am.internal.ericsson.com (147.117.188.78) with Microsoft SMTP Server (TLS) id 14.3.195.1; Tue, 2 Dec 2014 17:25:05 -0500 From: Simon Marchi To: CC: Simon Marchi Subject: [PATCH obvious/pushed] Fix comment typo Date: Tue, 2 Dec 2014 17:25:01 -0500 Message-ID: <1417559101-29222-1-git-send-email-simon.marchi@ericsson.com> MIME-Version: 1.0 X-IsSubscribed: yes ChangeLog: * common/cleanups.c (make_cleanup_dtor): Fix comment typo. --- gdb/ChangeLog | 4 ++++ gdb/common/cleanups.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index acb0786..f32b6b9 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2014-12-02 Simon Marchi + + * common/cleanups.c (make_cleanup_dtor): Fix comment typo. + 2014-12-02 Nick Bull * NEWS: Mention new Python events. diff --git a/gdb/common/cleanups.c b/gdb/common/cleanups.c index 49b643b..80271fd 100644 --- a/gdb/common/cleanups.c +++ b/gdb/common/cleanups.c @@ -119,7 +119,7 @@ make_cleanup (make_cleanup_ftype *function, void *arg) return make_my_cleanup (&cleanup_chain, function, arg); } -/* Same as make_cleanup except also includes TDOR, a destructor to free ARG. +/* Same as make_cleanup except also includes DTOR, a destructor to free ARG. DTOR is invoked when the cleanup is performed or when it is discarded. */ struct cleanup *