symtab.c (lookup_symbol_aux_local): Fix typo in comment.
authorDoug Evans <xdje42@gmail.com>
Sun, 26 Oct 2014 23:46:52 +0000 (16:46 -0700)
committerDoug Evans <xdje42@gmail.com>
Sun, 26 Oct 2014 23:46:52 +0000 (16:46 -0700)
gdb/ChangeLog:

* symtab.c (lookup_symbol_aux_local): Fix typo in comment.

gdb/ChangeLog
gdb/symtab.c

index b28705d0662766d3f7d16576d535727926640034..0e0059ebddcf6d334e0b795f76cfa9ec9c81604e 100644 (file)
@@ -1,3 +1,7 @@
+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
index 7e1dbd60557f383f1fefb56fa36ecc4a9f87a48f..ed164f7d23db7b21353912a4ca428713cb7d3010 100644 (file)
@@ -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;
 }