From: Doug Evans Date: Sun, 26 Oct 2014 23:46:52 +0000 (-0700) Subject: symtab.c (lookup_symbol_aux_local): Fix typo in comment. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3aee438bbb1634e6e6e3ae60fe8479ae7172b014;p=binutils-gdb.git symtab.c (lookup_symbol_aux_local): Fix typo in comment. gdb/ChangeLog: * symtab.c (lookup_symbol_aux_local): Fix typo in comment. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index b28705d0662..0e0059ebddc 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2014-10-26 Doug Evans + + * symtab.c (lookup_symbol_aux_local): Fix typo in comment. + 2014-10-26 Doug Evans * symfile.h (struct quick_symbol_functions) : Rename diff --git a/gdb/symtab.c b/gdb/symtab.c index 7e1dbd60557..ed164f7d23d 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; }