* 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.
This commit is contained in:
Kazu Hirata
2003-12-06 00:06:12 +00:00
parent e1f1f9b8c3
commit aaad4cf36a
8 changed files with 9 additions and 9 deletions

View File

@@ -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;