(process_mips_specific): Print conflictsno as an unsigned long.
[binutils-gdb.git] / binutils / coffgrok.c
index a6145c95a545c1f96c73d9459150af54738a263c..b2ec98c4bd8afcb70f1c546114c2594813075852 100644 (file)
@@ -370,7 +370,7 @@ do_type (int i)
        {
          if (aux->x_sym.x_tagndx.p)
            {
-             /* Refering to a struct defined elsewhere */
+             /* Referring 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 ?
@@ -389,7 +389,7 @@ do_type (int i)
        }
       else
        {
-         /* No auxents - it's anonynmous */
+         /* No auxents - it's anonymous */
          res->type = coff_structref_type;
          res->u.astructref.ref = 0;
          res->size = 0;
@@ -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;