This is the mail archive of the
gdb-patches@sourceware.org
mailing list for the GDB project.
[COMMITTED PATCH] symtab.c (lookup_symbol_aux_local): Fix typo in comment.
- From: Doug Evans <xdje42 at gmail dot com>
- To: gdb-patches at sourceware dot org
- Date: Sun, 26 Oct 2014 16:49:20 -0700
- Subject: [COMMITTED PATCH] symtab.c (lookup_symbol_aux_local): Fix typo in comment.
- Authentication-results: sourceware.org; auth=none
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.
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;
}