This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

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


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]