diff options
author | Doug Evans <xdje42@gmail.com> | 2014-10-26 16:46:52 -0700 |
---|---|---|
committer | Doug Evans <xdje42@gmail.com> | 2014-10-26 16:46:52 -0700 |
commit | 3aee438bbb1634e6e6e3ae60fe8479ae7172b014 (patch) | |
tree | 0d81661a008cf27cdfae0910fc72cdff15cf855b | |
parent | 4744af9bf6a84c89f2e3987e40dd533651f2e731 (diff) | |
download | gdb-3aee438bbb1634e6e6e3ae60fe8479ae7172b014.zip gdb-3aee438bbb1634e6e6e3ae60fe8479ae7172b014.tar.gz gdb-3aee438bbb1634e6e6e3ae60fe8479ae7172b014.tar.bz2 |
symtab.c (lookup_symbol_aux_local): Fix typo in comment.
gdb/ChangeLog:
* symtab.c (lookup_symbol_aux_local): Fix typo in comment.
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/symtab.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index b28705d..0e0059e 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,9 @@ 2014-10-26 Doug Evans <xdje42@gmail.com> + * symtab.c (lookup_symbol_aux_local): Fix typo in comment. + +2014-10-26 Doug Evans <xdje42@gmail.com> + * symfile.h (struct quick_symbol_functions) <lookup_symbol>: Rename parameter "kind" to "block_index". * symtab.c (error_in_psymtab_expansion): Rename parameter "kind" to 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; } |