[COMMITTED] symtab.c (lookup_symbol_aux_local): Fix typo in comment.

Message ID m3h9yql7cv.fsf@sspiff.org
State Committed
Headers

Commit Message

Doug Evans Oct. 26, 2014, 11:49 p.m. UTC
  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  <xdje42@gmail.com>

	* symtab.c (lookup_symbol_aux_local): Fix typo in comment.
  

Patch

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;
 }