summaryrefslogtreecommitdiff
path: root/binutils/coffgrok.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@codesourcery.com>2003-12-06 00:06:12 +0000
committerKazu Hirata <kazu@codesourcery.com>2003-12-06 00:06:12 +0000
commit007b3e1905b01e4289957c35846126d25839591a (patch)
treed654ee7988e43647070a3206e75d04552aaa66b8 /binutils/coffgrok.c
parent16c57e02e8efcb7647aa7e6b7f6bb4c7a511a33d (diff)
downloadbinutils-redhat-007b3e1905b01e4289957c35846126d25839591a.tar.gz
* ChangeLog-9197: Fix comment typos.
* coffgrok.c: Likewise. * filemode.c: Likewise. * objcopy.c: Likewise. * objdump.c: Likewise. * prdbg.c: Likewise. * stabs.c: Likewise. * unwind-ia64.c: Likewise.
Diffstat (limited to 'binutils/coffgrok.c')
-rw-r--r--binutils/coffgrok.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/binutils/coffgrok.c b/binutils/coffgrok.c
index 256e8c6495..883ececb6a 100644
--- a/binutils/coffgrok.c
+++ b/binutils/coffgrok.c
@@ -370,7 +370,7 @@ do_type (int i)
{
if (aux->x_sym.x_tagndx.p)
{
- /* Referring to a struct defined elsewhere */
+ /* Refe0rring to a struct defined elsewhere */
res->type = coff_structref_type;
res->u.astructref.ref = tindex[INDEXOF (aux->x_sym.x_tagndx.p)];
res->size = res->u.astructref.ref ?
@@ -398,7 +398,7 @@ do_type (int i)
case T_ENUM:
if (aux->x_sym.x_tagndx.p)
{
- /* Refering to a enum defined elsewhere */
+ /* Referring to a enum defined elsewhere */
res->type = coff_enumref_type;
res->u.aenumref.ref = tindex[INDEXOF (aux->x_sym.x_tagndx.p)];
res->size = res->u.aenumref.ref->type->size;