diff options
author | Kazu Hirata <kazu@codesourcery.com> | 2002-12-20 22:41:13 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@codesourcery.com> | 2002-12-20 22:41:13 +0000 |
commit | 19852a2abd4f698ced10f575b2de381dd09e441d (patch) | |
tree | 26ebee768a1d0deeae6234cb837e018385e6c081 /bfd/genlink.h | |
parent | 14e9ca951563089b049696580d420f648d73cc54 (diff) | |
download | gdb-19852a2abd4f698ced10f575b2de381dd09e441d.zip gdb-19852a2abd4f698ced10f575b2de381dd09e441d.tar.gz gdb-19852a2abd4f698ced10f575b2de381dd09e441d.tar.bz2 |
* coff-h8300.c: Fix comment typos.
* coffcode.h: Likewise.
* cpu-cris.c: Likewise.
* elf32-vax.c: Likewise.
* genlink.h: Likewise.
* linker.c: Likewise.
* som.c: Likewise.
* tekhex.c: Likewise.
* vms-misc.c: Likewise.
Diffstat (limited to 'bfd/genlink.h')
-rw-r--r-- | bfd/genlink.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bfd/genlink.h b/bfd/genlink.h index b6a9086..bcdc34b 100644 --- a/bfd/genlink.h +++ b/bfd/genlink.h @@ -54,13 +54,13 @@ struct generic_link_hash_table struct bfd_link_hash_table root; }; -/* Look up an entry in an generic link hash table. */ +/* Look up an entry in a generic link hash table. */ #define _bfd_generic_link_hash_lookup(table, string, create, copy, follow) \ ((struct generic_link_hash_entry *) \ bfd_link_hash_lookup (&(table)->root, (string), (create), (copy), (follow))) -/* Traverse an generic link hash table. */ +/* Traverse a generic link hash table. */ #define _bfd_generic_link_hash_traverse(table, func, info) \ (bfd_link_hash_traverse \ |