From patchwork Sun Oct 26 23:49:20 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Doug Evans X-Patchwork-Id: 3384 Received: (qmail 15944 invoked by alias); 26 Oct 2014 23:50:12 -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 15908 invoked by uid 89); 26 Oct 2014 23:50:11 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=AWL, BAYES_00, FREEMAIL_ENVFROM_END_DIGIT, FREEMAIL_FROM, RCVD_IN_DNSWL_LOW, SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-pd0-f173.google.com Received: from mail-pd0-f173.google.com (HELO mail-pd0-f173.google.com) (209.85.192.173) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Sun, 26 Oct 2014 23:50:09 +0000 Received: by mail-pd0-f173.google.com with SMTP id v10so4524666pde.32 for ; Sun, 26 Oct 2014 16:50:08 -0700 (PDT) X-Received: by 10.70.41.13 with SMTP id b13mr20279786pdl.20.1414367408103; Sun, 26 Oct 2014 16:50:08 -0700 (PDT) Received: from seba.sebabeach.org.gmail.com (173-13-178-50-sfba.hfc.comcastbusiness.net. [173.13.178.50]) by mx.google.com with ESMTPSA id ob17sm9206592pdb.34.2014.10.26.16.50.07 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 26 Oct 2014 16:50:07 -0700 (PDT) From: Doug Evans To: gdb-patches@sourceware.org Subject: [COMMITTED PATCH] symtab.c (lookup_symbol_aux_local): Fix typo in comment. Date: Sun, 26 Oct 2014 16:49:20 -0700 Message-ID: MIME-Version: 1.0 X-IsSubscribed: yes Hi. Just a typo fix in a comment. [One could just delete the comment, it doesn't really provide any value, I left it in.] 2014-10-26 Doug Evans * symtab.c (lookup_symbol_aux_local): Fix typo in comment. diff --git a/gdb/symtab.c b/gdb/symtab.c index 7e1dbd6..ed164f7 100644 --- a/gdb/symtab.c +++ b/gdb/symtab.c @@ -1532,7 +1532,7 @@ lookup_symbol_aux_local (const char *name, const struct block *block, block = BLOCK_SUPERBLOCK (block); } - /* We've reached the edge of the function without finding a result. */ + /* We've reached the end of the function without finding a result. */ return NULL; }