aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoug Evans <xdje42@gmail.com>2014-10-26 16:46:52 -0700
committerDoug Evans <xdje42@gmail.com>2014-10-26 16:46:52 -0700
commit3aee438bbb1634e6e6e3ae60fe8479ae7172b014 (patch)
tree0d81661a008cf27cdfae0910fc72cdff15cf855b
parent4744af9bf6a84c89f2e3987e40dd533651f2e731 (diff)
downloadgdb-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/ChangeLog4
-rw-r--r--gdb/symtab.c2
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;
}