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
commitaaad4cf36a0947e445e5b9aef431430b8630e4ee (patch)
tree1434b805c7e0b784cd0f6d9c3b00109f685507bf /binutils/coffgrok.c
parente1f1f9b8c39f91e902c173c3bcca87aa569ef129 (diff)
downloadbinutils-gdb-aaad4cf36a0947e445e5b9aef431430b8630e4ee.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 256e8c6495e..883ececb6a7 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;