diff options
author | Kazu Hirata <kazu@codesourcery.com> | 2003-12-06 00:06:12 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@codesourcery.com> | 2003-12-06 00:06:12 +0000 |
commit | aaad4cf36a0947e445e5b9aef431430b8630e4ee (patch) | |
tree | 1434b805c7e0b784cd0f6d9c3b00109f685507bf /binutils/coffgrok.c | |
parent | e1f1f9b8c39f91e902c173c3bcca87aa569ef129 (diff) | |
download | gdb-aaad4cf36a0947e445e5b9aef431430b8630e4ee.zip gdb-aaad4cf36a0947e445e5b9aef431430b8630e4ee.tar.gz gdb-aaad4cf36a0947e445e5b9aef431430b8630e4ee.tar.bz2 |
* 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.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/binutils/coffgrok.c b/binutils/coffgrok.c index 256e8c6..883ecec 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; |