From patchwork Tue Sep 2 23:31:29 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Doug Evans X-Patchwork-Id: 2631 Received: (qmail 25111 invoked by alias); 2 Sep 2014 23:31:34 -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 25095 invoked by uid 89); 2 Sep 2014 23:31:33 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-3.7 required=5.0 tests=AWL, BAYES_00, RCVD_IN_DNSWL_LOW, RP_MATCHES_RCVD, SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-yh0-f74.google.com Received: from mail-yh0-f74.google.com (HELO mail-yh0-f74.google.com) (209.85.213.74) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Tue, 02 Sep 2014 23:31:32 +0000 Received: by mail-yh0-f74.google.com with SMTP id 29so872302yhl.5 for ; Tue, 02 Sep 2014 16:31:30 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:subject:date:message-id:mime-version :content-type; bh=Ef1fj9bxc+kFwHLI1j0PzqLLH9u8rLGtTJb54tup+aQ=; b=YETCydlkdjuuYNkwFUmoWVgFz2s4PP+2CLmsbXLCZzt2/W//3Jg2jtp7b0Gkx4hgst pDUvO/mutYEArHaeiAYNb7n7yQ2QuEWCPa5PghDJHhsNRyOGLx2rUsBYCkaJHX8YQOXB UR8nZLpPQqaVVz2AS5HNVMOG3RadI5C3Tq9cE6/1DTWI+AtOw+tx9j65/XpDG/j0Li3k Ov2sAgckz2jeVG2g8uHlwxlefhNuLIHE5fTHYrVLkzeSO0RyRizhWassklPpdoAdqBDj hktzq19eKyydVVn2RzzuWtfehrACCrjCOI5+ErG8PxW2OPmh14UJNo/L8cGWCb7UlS9b dUnA== X-Gm-Message-State: ALoCoQloJvXxV6vla0BviuKTWonMiDaZQJvXoTXBjNh4avO4vIUD/M5uqLJ7lmq9ZAUW+jsqTa33sgfuPyeM8RIbsEpZ8UC4jo1zE3yR42GNz4S4Rb0NuzO2gwNhgvKQuyeRNcjdvbj2H+PacQ9uZyNvw5JPicwNuEsHnWBN6RUsTE7HbTjrKnQ= X-Received: by 10.236.83.171 with SMTP id q31mr16478465yhe.13.1409700690529; Tue, 02 Sep 2014 16:31:30 -0700 (PDT) Received: from corp2gmr1-2.hot.corp.google.com (corp2gmr1-2.hot.corp.google.com [172.24.189.93]) by gmr-mx.google.com with ESMTPS id h24si733531yhb.6.2014.09.02.16.31.30 for (version=TLSv1.1 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Tue, 02 Sep 2014 16:31:30 -0700 (PDT) Received: from ruffy.mtv.corp.google.com (ruffy.mtv.corp.google.com [172.17.128.44]) by corp2gmr1-2.hot.corp.google.com (Postfix) with ESMTPS id 298DE5A4194 for ; Tue, 2 Sep 2014 16:31:30 -0700 (PDT) From: Doug Evans To: gdb-patches@sourceware.org Subject: [COMMITTED PATCH] typeprint.c (find_global_typedef): Fix comment. Date: Tue, 02 Sep 2014 16:31:29 -0700 Message-ID: MIME-Version: 1.0 X-IsSubscribed: yes Hi. I noticed this while reading the code. 2014-09-02 Doug Evans * typeprint.c (find_global_typedef): Fix comment. diff --git a/gdb/typeprint.c b/gdb/typeprint.c index 3d8620a..4d3358f 100644 --- a/gdb/typeprint.c +++ b/gdb/typeprint.c @@ -286,8 +286,8 @@ find_global_typedef (const struct type_print_options *flags, return new_tf->name; } - /* Put an entry into the hash table now, in case apply_script_type_printers - recurses. */ + /* Put an entry into the hash table now, in case + apply_ext_lang_type_printers recurses. */ new_tf = XOBNEW (&flags->global_typedefs->storage, struct typedef_field); new_tf->name = NULL; new_tf->type = t;